Use node-sass@3.4.0-beta

This commit is contained in:
xzyfer 2015-09-18 17:28:27 +10:00
parent 64d93e6945
commit 16d4efed16
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@
}, },
"dependencies": { "dependencies": {
"gulp-util": "^3.0", "gulp-util": "^3.0",
"node-sass": "^3.0.0", "node-sass": "^3.4.0-beta1",
"object-assign": "^2.0.0", "object-assign": "^2.0.0",
"through2": "^0.6.3", "through2": "^0.6.3",
"vinyl-sourcemaps-apply": "~0.1.1" "vinyl-sourcemaps-apply": "~0.1.1"

View file

@ -129,7 +129,7 @@ describe('gulp-sass -- async compile', function() {
// Error must include file error occurs in // Error must include file error occurs in
err.message.indexOf('test/scss/error.scss').should.not.equal(-1); err.message.indexOf('test/scss/error.scss').should.not.equal(-1);
// Error must include line and column error occurs on // Error must include line and column error occurs on
err.message.indexOf('2:7').should.not.equal(-1); err.message.indexOf('2:3').should.not.equal(-1);
done(); done();
}); });
stream.write(errorFile); stream.write(errorFile);