0.0.3 • Published 10 years ago
gulp-blueprint-sass v0.0.3
gulp-blueprint-sass
Installation
$ npm install --save-dev gulp-blueprint-sassDescription
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 optionsOptions
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