Skip to content

Commit e4ec091

Browse files
committed
feat(package): upgrade deps, electron to ^4.0.0
1 parent 893f596 commit e4ec091

File tree

3 files changed

+153
-1152
lines changed

3 files changed

+153
-1152
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"lodash.merge": "^4.6.1",
3636
"portfinder": "^1.0.16",
3737
"pumpify": "^1.5.1",
38-
"spectron": "^4.0.0",
38+
"spectron": "^5.0.0",
3939
"split2": "^3.0.0",
4040
"terser-webpack-plugin": "^1.1.0",
4141
"through2-filter": "^3.0.0",
@@ -54,7 +54,7 @@
5454
"@vue/cli-service": "^3.0.1",
5555
"@vue/cli-test-utils": "^3.0.1",
5656
"@vue/eslint-config-typescript": "^3.0.1",
57-
"electron": "^2.0.7",
57+
"electron": "^4.0.0",
5858
"eslint-config-standard": "^12.0.0",
5959
"eslint-plugin-import": "^2.14.0",
6060
"eslint-plugin-node": "^7.0.1",

prompts.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,19 @@ module.exports = [
77
message: 'Choose Electron Version',
88
choices: [
99
{
10-
name: '^2.0.0 (stable)',
10+
name: '^2.0.0',
1111
value: '^2.0.0',
1212
short: '^2.0.0'
1313
},
1414
{
15-
name: '^3.0.0 (may have small issues)',
15+
name: '^3.0.0',
1616
value: '^3.0.0',
1717
short: '^3.0.0'
18+
},
19+
{
20+
name: '^4.0.0 (may have small issues)',
21+
value: '^4.0.0',
22+
short: '^4.0.0'
1823
}
1924
],
2025
when: () => {

0 commit comments

Comments
 (0)