Skip to content

Commit 86b8dc3

Browse files
authored
Merge pull request webpack#3194 from e-cloud/update-deps
Update deps
2 parents 4846d29 + 8d8a7f2 commit 86b8dc3

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99
*.log
1010
.idea
1111
yarn.lock
12+
.vscode

package.json

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@
44
"author": "Tobias Koppers @sokra",
55
"description": "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.",
66
"dependencies": {
7-
"acorn": "^3.2.0",
7+
"acorn": "^4.0.3",
88
"ajv": "^4.7.0",
9-
"async": "^1.3.0",
10-
"clone": "^1.0.2",
9+
"async": "^2.1.2",
1110
"enhanced-resolve": "^2.2.0",
1211
"interpret": "^1.0.0",
1312
"loader-runner": "^2.2.0",
@@ -27,20 +26,19 @@
2726
"license": "MIT",
2827
"devDependencies": {
2928
"beautify-lint": "^1.0.3",
30-
"benchmark": "^1.0.0",
29+
"benchmark": "^2.1.1",
3130
"bundle-loader": "~0.5.0",
3231
"codecov.io": "^0.1.2",
3332
"coffee-loader": "~0.7.1",
3433
"coffee-script": "^1.10.0",
3534
"coveralls": "^2.11.2",
36-
"css-loader": "~0.23.1",
37-
"diff": "^2.0.2",
35+
"css-loader": "~0.25.0",
3836
"eclint": "^1.1.5",
3937
"es6-promise-polyfill": "^1.1.1",
4038
"eslint": "^1.1.0",
4139
"express": "~4.13.1",
4240
"extract-text-webpack-plugin": "^2.0.0-beta",
43-
"file-loader": "~0.8.0",
41+
"file-loader": "~0.9.0",
4442
"i18n-webpack-plugin": "^0.3.0",
4543
"istanbul": "^0.4.1",
4644
"jade": "^1.11.0",
@@ -49,14 +47,14 @@
4947
"json-loader": "~0.5.1",
5048
"less": "^2.5.1",
5149
"less-loader": "^2.0.0",
52-
"mocha": "^2.3.4",
50+
"mocha": "^3.1.0",
5351
"mocha-lcov-reporter": "^1.0.0",
5452
"nsp": "^2.6.1",
5553
"raw-loader": "~0.5.0",
5654
"react": "^15.2.1",
5755
"react-dom": "^15.2.1",
58-
"script-loader": "~0.6.0",
59-
"should": "^8.0.2",
56+
"script-loader": "~0.7.0",
57+
"should": "^11.1.1",
6058
"style-loader": "~0.13.0",
6159
"url-loader": "~0.5.0",
6260
"val-loader": "~0.5.0",

test/cases/parsing/harmony-this/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ import * as New from "./new";
2323

2424
it("should be possible to use new correctly", function() {
2525
x
26-
new C().should.be.eql({ok: true});
26+
new C().should.match({ok: true});
2727
x
28-
new C2().should.be.eql({ok: true});
28+
new C2().should.match({ok: true});
2929
x
30-
new New.C().should.be.eql({ok: true});
30+
new New.C().should.match({ok: true});
3131
});

0 commit comments

Comments
 (0)