Skip to content

Commit 9b4bfbd

Browse files
authored
Update dependencies to electron v4 (szwacz#307)
1 parent bd48127 commit 9b4bfbd

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

.babelrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@
99
}
1010
}
1111
]
12-
],
13-
"plugins": [["transform-object-rest-spread", { "useBuiltIns": true }]]
12+
]
1413
}

e2e/utils.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,14 @@ import electron from "electron";
22
import { Application } from "spectron";
33

44
const beforeEach = function() {
5-
this.timeout(10000);
65
this.app = new Application({
76
path: electron,
8-
args: ["."],
9-
startTimeout: 10000,
10-
waitTimeout: 10000
7+
args: ["."]
118
});
129
return this.app.start();
1310
};
1411

1512
const afterEach = function() {
16-
this.timeout(10000);
1713
if (this.app && this.app.isRunning()) {
1814
return this.app.stop();
1915
}

package.json

+11-12
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,21 @@
3434
"fs-jetpack": "^2.1.0"
3535
},
3636
"devDependencies": {
37-
"@babel/core": "^7.0.0-beta.54",
38-
"@babel/preset-env": "^7.0.0-beta.54",
37+
"@babel/core": "^7.5.5",
38+
"@babel/preset-env": "^7.5.5",
3939
"babel-loader": "^8.0.0-beta.4",
40-
"babel-plugin-transform-object-rest-spread": "^7.0.0-beta.3",
4140
"chai": "^4.1.0",
42-
"css-loader": "^1.0.0",
43-
"electron": "2.0.2",
44-
"electron-builder": "^20.15.1",
45-
"electron-mocha": "^6.0.4",
41+
"css-loader": "^3.1.0",
42+
"electron": "^4.0.0",
43+
"electron-builder": "^21.1.5",
44+
"electron-mocha": "^8.1.1",
4645
"friendly-errors-webpack-plugin": "^1.7.0",
47-
"mocha": "^5.2.0",
46+
"mocha": "^6.2.0",
4847
"source-map-support": "^0.5.6",
49-
"spectron": "^3.8.0",
50-
"style-loader": "^0.21.0",
51-
"webpack": "^4.12.0",
52-
"webpack-cli": "^3.0.4",
48+
"spectron": "^6.0.0",
49+
"style-loader": "^0.23.1",
50+
"webpack": "^4.38.0",
51+
"webpack-cli": "^3.3.6",
5352
"webpack-merge": "^4.1.3",
5453
"webpack-node-externals": "^1.7.2"
5554
}

0 commit comments

Comments
 (0)