Skip to content

Commit 6df8af1

Browse files
authored
Update dependencies and run all tests (#745)
1 parent 2c61de5 commit 6df8af1

File tree

4 files changed

+2456
-2306
lines changed

4 files changed

+2456
-2306
lines changed

.eslintrc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@
33
"es6": true,
44
"node": true
55
},
6-
"extends": ["eslint-config-babel"],
6+
"extends": ["eslint-config-babel", "eslint-config-prettier"],
77
"plugins": ["prettier"],
88
"rules": {
9-
"arrow-parens": "off",
10-
"quotes": "off",
119
"prettier/prettier": ["error", { "trailingComma": "all" }]
1210
}
1311
}

package.json

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"node": ">= 6.9"
1111
},
1212
"dependencies": {
13-
"find-cache-dir": "^1.0.0",
13+
"find-cache-dir": "^2.0.0",
1414
"loader-utils": "^1.0.2",
1515
"mkdirp": "^0.5.1",
1616
"util.promisify": "^1.0.0"
@@ -20,25 +20,26 @@
2020
"webpack": ">=2"
2121
},
2222
"devDependencies": {
23-
"@babel/cli": "^7.0.0",
24-
"@babel/core": "^7.0.0",
25-
"@babel/preset-env": "^7.0.0",
23+
"@babel/cli": "^7.2.0",
24+
"@babel/core": "^7.2.0",
25+
"@babel/preset-env": "^7.2.0",
2626
"ava": "0.25.0",
27-
"babel-eslint": "^8.0.0",
28-
"babel-plugin-istanbul": "^4.0.0",
29-
"babel-plugin-react-intl": "^2.1.3",
30-
"cross-env": "^5.0.0",
31-
"eslint": "^4.1.0",
32-
"eslint-config-babel": "^8.0.0",
33-
"eslint-plugin-flowtype": "^2.25.0",
34-
"eslint-plugin-prettier": "^2.1.2",
35-
"husky": "^0.14.0",
36-
"lint-staged": "^7.1.0",
37-
"nyc": "^11.0.1",
38-
"prettier": "^1.2.2",
27+
"babel-eslint": "^10.0.1",
28+
"babel-plugin-istanbul": "^5.1.0",
29+
"babel-plugin-react-intl": "^3.0.1",
30+
"cross-env": "^5.2.0",
31+
"eslint": "^5.9.0",
32+
"eslint-config-babel": "^8.0.2",
33+
"eslint-config-prettier": "^3.3.0",
34+
"eslint-plugin-flowtype": "^3.2.0",
35+
"eslint-plugin-prettier": "^3.0.0",
36+
"husky": "^1.2.0",
37+
"lint-staged": "^8.1.0",
38+
"nyc": "^13.1.0",
39+
"prettier": "^1.15.3",
3940
"react": "^16.0.0",
4041
"react-intl": "^2.1.2",
41-
"react-intl-webpack-plugin": "^0.0.3",
42+
"react-intl-webpack-plugin": "^0.3.0",
4243
"rimraf": "^2.4.3",
4344
"webpack": "^4.0.0"
4445
},

test/sourcemaps.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ test.cb("should output webpack's devtoolModuleFilename option", t => {
173173
});
174174
});
175175

176-
test.only.cb("should disable sourcemap output with 'sourceMaps:false'", t => {
176+
test.cb("should disable sourcemap output with 'sourceMaps:false'", t => {
177177
const config = Object.assign({}, globalConfig, {
178178
devtool: "source-map",
179179
output: {
@@ -224,7 +224,7 @@ test.only.cb("should disable sourcemap output with 'sourceMaps:false'", t => {
224224
});
225225
});
226226

227-
test.only.cb("should disable sourcemap output with 'sourceMap:false'", t => {
227+
test.cb("should disable sourcemap output with 'sourceMap:false'", t => {
228228
const config = Object.assign({}, globalConfig, {
229229
devtool: "source-map",
230230
output: {

0 commit comments

Comments
 (0)