Bump to Electron 12.0.1 with Chrome 89.0.4389.82

This commit is contained in:
Ronan Jouchet 2021-03-10 20:25:33 -05:00
parent 1521a28f45
commit dcadfb0bca
2 changed files with 3 additions and 3 deletions

View File

@ -19,6 +19,6 @@
"source-map-support": "^0.5.19"
},
"devDependencies": {
"electron": "^11.3.0"
"electron": "^12.0.1"
}
}

View File

@ -3,8 +3,8 @@ import * as path from 'path';
export const DEFAULT_APP_NAME = 'APP';
// Update both together, and update app / package.json / devDeps / electron
export const DEFAULT_ELECTRON_VERSION = '11.3.0';
export const DEFAULT_CHROME_VERSION = '87.0.4280.141';
export const DEFAULT_ELECTRON_VERSION = '12.0.1';
export const DEFAULT_CHROME_VERSION = '89.0.4389.82';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],