From b1d0d6857f2ced72ea94adadfa56f9b23aab3ca5 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sat, 29 Aug 2020 16:08:37 -0400 Subject: [PATCH] Bump default Electron to 10.1.0, bump to TS 4.x --- app/package.json | 2 +- package.json | 2 +- src/constants.ts | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/package.json b/app/package.json index 46629b0..5464f92 100644 --- a/app/package.json +++ b/app/package.json @@ -20,6 +20,6 @@ "wurl": "2.x" }, "devDependencies": { - "electron": "9.x" + "electron": "10.x" } } diff --git a/package.json b/package.json index a949aad..9989c04 100644 --- a/package.json +++ b/package.json @@ -85,7 +85,7 @@ "prettier": "2.x", "rimraf": "3.x", "ts-loader": "8.x", - "typescript": "3.x", + "typescript": "4.x", "webpack": "4.x", "webpack-cli": "3.x" }, diff --git a/src/constants.ts b/src/constants.ts index 5ae49ce..eb40216 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 = '9.2.0'; -export const DEFAULT_CHROME_VERSION = '83.0.4103.122'; +export const DEFAULT_ELECTRON_VERSION = '10.1.0'; +export const DEFAULT_CHROME_VERSION = '85.0.4183.87'; export const ELECTRON_MAJOR_VERSION = parseInt( DEFAULT_ELECTRON_VERSION.split('.')[0],