Bump to Electron 12.0.4 with Chrome 89.0.4389.114

With recent security fixes.
See https://github.com/electron/electron/releases/tag/v12.0.4
and https://github.com/electron/electron/releases/tag/v12.0.3
This commit is contained in:
Ronan Jouchet 2021-04-13 21:49:31 -04:00
parent f64c05f735
commit 83b1c10269
1 changed files with 2 additions and 2 deletions

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 = '12.0.2';
export const DEFAULT_CHROME_VERSION = '89.0.4389.90';
export const DEFAULT_ELECTRON_VERSION = '12.0.4';
export const DEFAULT_CHROME_VERSION = '89.0.4389.114';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],