Bump default Electron to 11.3.0 with the icon fix (with Chromium 87.0.4280.141)

This commit is contained in:
Ronan Jouchet 2021-02-25 18:28:29 -05:00
parent 5ea4638aea
commit f4a0479a11
2 changed files with 3 additions and 3 deletions

View File

@ -20,6 +20,6 @@
"wurl": "^2.5.4"
},
"devDependencies": {
"electron": "^11.1.1"
"electron": "^11.3.0"
}
}

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 = '11.1.1';
export const DEFAULT_CHROME_VERSION = '87.0.4280.88';
export const DEFAULT_ELECTRON_VERSION = '11.3.0';
export const DEFAULT_CHROME_VERSION = '87.0.4280.141';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],