Bump default Electron to 10.1.0, bump to TS 4.x

This commit is contained in:
Ronan Jouchet 2020-08-29 16:08:37 -04:00
parent 06369f1213
commit b1d0d6857f
3 changed files with 4 additions and 4 deletions

View File

@ -20,6 +20,6 @@
"wurl": "2.x"
},
"devDependencies": {
"electron": "9.x"
"electron": "10.x"
}
}

View File

@ -85,7 +85,7 @@
"prettier": "2.x",
"rimraf": "3.x",
"ts-loader": "8.x",
"typescript": "3.x",
"typescript": "4.x",
"webpack": "4.x",
"webpack-cli": "3.x"
},

View File

@ -3,8 +3,8 @@ import * as path from 'path';
export const DEFAULT_APP_NAME = 'APP';
// Update both together
export const DEFAULT_ELECTRON_VERSION = '9.2.0';
export const DEFAULT_CHROME_VERSION = '83.0.4103.122';
export const DEFAULT_ELECTRON_VERSION = '10.1.0';
export const DEFAULT_CHROME_VERSION = '85.0.4183.87';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],