Merge pull request #344 from xzyfer/feat/node-sass-34-beta

Use node-sass@3.4.0-beta
This commit is contained in:
Michael Mifsud 2015-09-21 22:09:24 +10:00
commit 839c315372
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@
},
"dependencies": {
"gulp-util": "^3.0",
"node-sass": "^3.0.0",
"node-sass": "^3.4.0-beta1",
"object-assign": "^2.0.0",
"through2": "^0.6.3",
"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
err.message.indexOf('test/scss/error.scss').should.not.equal(-1);
// 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();
});
stream.write(errorFile);