systemjs-plugin-stylus
v0.1.0
Published
Installation ---
Downloads
2
Readme
Installation
With jspm:
jspm install stylus
Usage
SystemJS.config({
meta: {
'*.styl': { loader: 'stylus' }
}
});
Or via package configuration:
SystemJS.config({
packages: {
'src/': {
meta: {
'*.styl': { loader: 'stylus' }
}
}
}
});
In-browser Stylus transpilation and builds should then be provided for any *.styl
files.
Source maps support is included.
This plugin is built on the CSS plugin base and supports the same build options.
License
MIT