0.0.3 • Published 9 years ago

gulp-blueprint-sass v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

gulp-blueprint-sass

npm Travis Code Climate Code Climate npm npm

David David

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 instance
  • task (string, default: 'sass'): The gulp task name
  • dependencies (string|array, default: ['clean']): The gulp task dependencies
  • src (string|array, default: 'assets/sass/*.scss'): SASS input file
  • rename (object, default: { extname: '.min.css' }): Options for gulp-rename
  • dest (string, default: 'public'): Destination of the compiled and minified CSS stylesheet.

Test

$ npm install -g mocha  
$ mocha

Author

marc1404

License

MIT