gulp-blueprint-sass
v0.0.3
Published
Gulp helper to compile SASS stylesheets to minified CSS
Downloads
1
Maintainers
Readme
gulp-blueprint-sass
Installation
$ npm install --save-dev gulp-blueprint-sass
Description
This package can be used to setup a gulp task to compile and minify SASS stylesheets.
Using:
Usage
gulpfile.js
var sass = require('gulp-blueprint-sass');
sass(); // gulp task registered with default options
Options
You can pass an options object.
gulp
(object, default:require('gulp')
): Provide a custom gulp instancetask
(string, default:'sass'
): The gulp task namedependencies
(string|array, default:['clean']
): The gulp task dependenciessrc
(string|array, default:'assets/sass/*.scss'
): SASS input filerename
(object, default:{ extname: '.min.css' }
): Options for gulp-renamedest
(string, default:'public'
): Destination of the compiled and minified CSS stylesheet.
Test
$ npm install -g mocha
$ mocha