From 292416b83fa1381e1f2ccee3cb3cef94992e8e9c Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sat, 21 Nov 2020 11:28:00 -0500 Subject: [PATCH] Bump default Electron to 11.0.2 --- app/package.json | 2 +- src/constants.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/package.json b/app/package.json index 5464f92..b847147 100644 --- a/app/package.json +++ b/app/package.json @@ -20,6 +20,6 @@ "wurl": "2.x" }, "devDependencies": { - "electron": "10.x" + "electron": "11.x" } } diff --git a/src/constants.ts b/src/constants.ts index 39ae1f5..3a9ce98 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -3,8 +3,8 @@ import * as path from 'path'; export const DEFAULT_APP_NAME = 'APP'; // Update both together -export const DEFAULT_ELECTRON_VERSION = '10.1.5'; -export const DEFAULT_CHROME_VERSION = '85.0.4183.121'; +export const DEFAULT_ELECTRON_VERSION = '11.0.2'; +export const DEFAULT_CHROME_VERSION = '87.0.4280.67'; export const ELECTRON_MAJOR_VERSION = parseInt( DEFAULT_ELECTRON_VERSION.split('.')[0],