Babushka
Recursive style hoisting from nested babushka components.
This package enables a nested component architecture, where component dependencies are automatically detected and their styles included when the main less file is processed.
Quickstart
- Add
babushka
as a dependency vianpm install --save babushka
. - Add
prepublish
,pretest
andprestart
hooks into yourpackage.json
which execute the babushka script:"scripts": { ... "prepublish": babushka", "pretest": babushka", "prestart": babushka" ... }
- Make sure your main styles file is at
./src/styles/index.less
and imports all other required styles via@import
directives.
Now you can install additional packages that are also babushka components
and their styles will automatically be included when babushka processes the
styles of this component. The resulting css file combines the styles of
this component and all other babushka style dependencies and is written to
./lib/styles/index.css
.
License
Apache 2.0