Go to file
Will O'Brien a4a43487e3 Remove file clone
The file object passed by gulp is now a wrapped node file object. Clone
seems to be tripping over the path setting resulting in .scss files
rather than .css files. The content of the files is, as expected, css.

This fix removes the file cloning and instead just emits the incoming
file with modified attributes.
2013-12-14 18:23:04 -08:00
test Added documentation 2013-08-31 21:54:25 -07:00
.gitignore Initial commit 2013-08-31 14:01:20 -07:00
index.js Remove file clone 2013-12-14 18:23:04 -08:00
LICENSE Initial commit 2013-08-31 14:01:20 -07:00
package.json Added documentation 2013-08-31 21:54:25 -07: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