diff --git a/package.json b/package.json index 060f31fc..7094912e 100644 --- a/package.json +++ b/package.json @@ -27,8 +27,8 @@ "author": "J. Tangelder", "license": "MIT", "peerDependencies": { - "node-sass": "^3.3.3", - "webpack": "^1.12.2" + "node-sass": "^3.4.2", + "webpack": "^1.12.6" }, "dependencies": { "async": "^1.4.0", @@ -37,16 +37,16 @@ }, "devDependencies": { "bootstrap-sass": "^3.3.5", - "css-loader": "^0.19.0", + "css-loader": "^0.23.0", "enhanced-require": "^0.5.0-beta6", "file-loader": "^0.8.4", "jshint": "^2.8.0", - "mocha": "^2.0.1", - "node-sass": "3.4.0", + "mocha": "^2.3.4", + "node-sass": "3.4.2", "raw-loader": "^0.5.1", "should": "^7.0.2", - "style-loader": "^0.12.3", - "webpack": "1.12.2", + "style-loader": "^0.13.0", + "webpack": "1.12.6", "webpack-dev-server": "^1.7.0" } } diff --git a/test/index.test.js b/test/index.test.js index 4bee1832..1d8e77bc 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -134,7 +134,7 @@ describe('sass-loader', function () { // check for file excerpt err.message.should.match(/@import "does-not-exist";/); err.message.should.match(/File to import not found or unreadable: does-not-exist/); - err.message.should.match(/\(line 1, column 9\)/); + err.message.should.match(/\(line 1, column 1\)/); err.message.indexOf(pathToErrorFileNotFound).should.not.equal(-1); } }); @@ -146,7 +146,7 @@ describe('sass-loader', function () { // check for file excerpt err.message.should.match(/@import "\.\/another\/_module\.scss";/); err.message.should.match(/File to import not found or unreadable: \.\/another\/_module\.scss/); - err.message.should.match(/\(line 1, column 9\)/); + err.message.should.match(/\(line 1, column 1\)/); err.message.indexOf(pathToErrorFileNotFound2).should.not.equal(-1); } });