style-paths
v0.1.1
Published
Find the paths of every bower_component with a .sass or .scss file (for use with sass' includePath option)
Downloads
2
Maintainers
Readme
style-paths
Find the paths of every bower_component with a .sass or .scss file (for use with sass' includePath option)
Installation
npm install --save-dev style-paths
Usage
For example usage with gulp-sass
use this plugin for getting the path array for the includePath
option that gulp-sass
offers.
gulp.task('styles', function() {
gulp.src('style.scss')
.pipe(sass({
includePaths: stylePaths(['scss, sass'])
}))
.pipe(gulp.dest('./'));
});