sourcejs-sass
v0.1.1
Published
Parses linked SASS files using Node Sass
Maintainers
Readme
SASS support for SourceJS Specs
SourceJS middleware to support SASS files linked in spec files
Works with SourceJS v.0.5.6+.
Install
To install, run npm in sourcejs/user folder:
npm i sourcejs-sass -SThen restart your SourceJS application, middleware will be loaded automatically.
Usage
After installing middleware, linked .scss files will be parsed and replaced with style tag containing rendered CSS
<link href="style.scss" rel="stylesheet">
...
My SepcsWill be replaced with:
<style type="text/css">
... my parsed CSS
</style>
...
My Sepcs