2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2025-01-09 08:30:15 +00:00

Bump default Electron to 11.0.2

This commit is contained in:
Ronan Jouchet 2020-11-21 11:28:00 -05:00
parent bbd51ad988
commit 292416b83f
2 changed files with 3 additions and 3 deletions

View File

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

View File

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