Go to file
Neil Kinnish 86827e6eca Update error handling and handled partials
1. Updated so as an error is logged rather than reported as an error as this will stop the watcher which could be annoying - although may be a preference option?

2. Added logic to ignore a partial (doesn't log) essentially a sass file prefixed with '_'
2014-01-10 16:27:05 +00:00
test Added tape tests 2014-01-10 01:45:46 -08:00
.gitignore Add node_modules to gitignore 2013-12-14 18:23:28 -08:00
index.js Update error handling and handled partials 2014-01-10 16:27:05 +00:00
LICENSE Initial commit 2013-08-31 14:01:20 -07:00
package.json Added tape tests 2014-01-10 01:45:46 -08:00
README.md Removing redundant parentheses 2013-12-04 10:36:46 -07:00

gulp-sass

SASS plugin for gulp.

#Install

npm install gulp-sass

#Usage

Something like this:

var gulp = require('gulp');
var sass = require('gulp-sass')

gulp.task('sass', function () {
	gulp.src('./scss/*.scss')
		.pipe(sass())
		.pipe(gulp.dest('./css'));
});

Options passed as a hash into sass() will be passed along to node-sass