Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
- node-sass v3.4.2 (including libsass v3.3.2 with regression fixes)
- update other deps to last versions

- update tests according to new deps asserts
  • Loading branch information
chicoxyzzy committed Nov 19, 2015
1 parent 54d9c93 commit 4d0b004
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
}
}
4 changes: 2 additions & 2 deletions test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
});
Expand All @@ -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);
}
});
Expand Down

0 comments on commit 4d0b004

Please sign in to comment.