1.0.4 • Published 9 years ago
node-sass-glob v1.0.4
node-sass-glob
A glob importer for use with node-sass
Installation
npm i node-sass-glob
Usage
To use the importer, simply pass it to the node-sass.render()
function
var sass = require('node-sass');
sass.render({
importer: require('node-sass-glob'),
...options
}, function (err, output) {});
In your scss files, simply use globs in your import statements.
@import 'styles/**/*.scss';
@import 'content/*.scss';
License
MIT, see LICENSE.md for details.