Updated Changelog/Readme

2.x
Sam Richard 2015-03-24 07:33:23 -05:00
parent eca922cb2d
commit 6754f39c4e
2 changed files with 5 additions and 2 deletions

View File

@ -7,6 +7,7 @@
* **New** Added `.editorconfig` for development consistency
* **New** Added linting and test for said linting
* **Change** Updated the README
* **New** `logError` function to make streaming errors possible instead of breaking the stream
### 1.3.3

View File

@ -19,12 +19,14 @@ var sass = require('gulp-sass');
gulp.task('sass', function () {
gulp.src('./scss/*.scss')
.pipe(sass().on('error', gutil.log))
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('./css'));
});
```
Options passed as a hash into `sass()` will be passed along to [`node-sass`](https://github.com/sass/node-sass).
## Options
Pass in options just like you would for [`node-sass`](https://github.com/sass/node-sass#options); they will be passed along just as if you were using `node-sass`.
## Source Maps