Bump to Electron 12.0.2 with Chrome 89.0.4389.90

See https://github.com/electron/electron/releases/tag/v12.0.2
This commit is contained in:
Ronan Jouchet 2021-04-11 20:47:16 -04:00
parent da06d933df
commit 1474ebc8bc
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.1';
export const DEFAULT_CHROME_VERSION = '89.0.4389.82';
export const DEFAULT_ELECTRON_VERSION = '12.0.2';
export const DEFAULT_CHROME_VERSION = '89.0.4389.90';
export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0],