From e5ba8c779fb6c25ff5294cdbc2cfe1f4ff237fa9 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sat, 13 Jun 2020 10:23:15 -0400 Subject: [PATCH] Bump default Electron to 9.0.4, bump deps (jest, electron-context-menu) --- app/package.json | 4 ++-- package.json | 6 +++--- src/constants.ts | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/package.json b/app/package.json index b9ddefb..46629b0 100644 --- a/app/package.json +++ b/app/package.json @@ -12,7 +12,7 @@ ], "scripts": {}, "dependencies": { - "electron-context-menu": "1.x", + "electron-context-menu": "2.x", "electron-dl": "3.x", "electron-squirrel-startup": "1.x", "electron-window-state": "5.x", @@ -20,6 +20,6 @@ "wurl": "2.x" }, "devDependencies": { - "electron": "8.x" + "electron": "9.x" } } diff --git a/package.json b/package.json index 9d1c2da..97fbabb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nativefier", - "version": "8.0.7", + "version": "9.0.0", "description": "Wrap web apps natively", "license": "MIT", "author": "Goh Jia Hao", @@ -75,13 +75,13 @@ "tmp": "0.x" }, "devDependencies": { - "@types/jest": "25.x", + "@types/jest": "26.x", "@typescript-eslint/eslint-plugin": "2.x", "@typescript-eslint/parser": "2.x", "eslint": "6.x", "eslint-config-prettier": "6.x", "eslint-plugin-prettier": "3.x", - "jest": "25.x", + "jest": "26.x", "prettier": "2.x", "rimraf": "3.x", "ts-loader": "6.x", diff --git a/src/constants.ts b/src/constants.ts index a952d0a..c60ac9a 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 = '8.2.3'; -export const DEFAULT_CHROME_VERSION = '80.0.3987.163'; +export const DEFAULT_ELECTRON_VERSION = '9.0.4'; +export const DEFAULT_CHROME_VERSION = '83.0.4103.104'; export const ELECTRON_MAJOR_VERSION = parseInt( DEFAULT_ELECTRON_VERSION.split('.')[0],