use CSS::Specification::Compiler;
my CSS::Specification::Compiler $compiler .= new;
use JSON::Fast;
$compiler.load-defs: :file<examples/css21-aural.txt>;
# output Raku code
mkdir 'lib/MyCSS';
# output main grammar
'lib/MyCSS/Grammar.rakumod'.IO.spurt: .DEPARSE
given $compiler.build-grammar: <MyCSS Grammar>;
# output a corresponding grammar parse actions class
'lib/MyCSS/Actions.rakumod'.IO.spurt: .DEPARSE
given $compiler.build-actions: <MyCSS Actions>;
# output stubs for any external rule references
'lib/MyCSS/External.rakumod'.IO.spurt: .DEPARSE
given $compiler.build-external: <MyCSS External>;
# output associated metadata
mkdir 'resources';
'resources/MyCSSMeta.json'.IO.spurt: to-json($compiler.metadata, :sorted-keys);This module is used to compile CSS property definitions to Raku Grammars and Actions and Roles, and to extract meta-data.
CSS::Module, or similar, can then be used to bundle the definitions for use by CSS::Properties and other downstream CSS related modules.
This module may be subject to change. It uses RakuAST API, which is classed as experimental. The current version is known to build against Rakudo v2025.10 and v2025.11.
It has been used to compile property value definitions for recent CSS::Module releases.