Bump default Electron to 9.0.4, bump deps (jest, electron-context-menu)

This commit is contained in:
Ronan Jouchet 2020-06-13 10:23:15 -04:00
parent 6b81324531
commit e5ba8c779f
3 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@
], ],
"scripts": {}, "scripts": {},
"dependencies": { "dependencies": {
"electron-context-menu": "1.x", "electron-context-menu": "2.x",
"electron-dl": "3.x", "electron-dl": "3.x",
"electron-squirrel-startup": "1.x", "electron-squirrel-startup": "1.x",
"electron-window-state": "5.x", "electron-window-state": "5.x",
@ -20,6 +20,6 @@
"wurl": "2.x" "wurl": "2.x"
}, },
"devDependencies": { "devDependencies": {
"electron": "8.x" "electron": "9.x"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "nativefier", "name": "nativefier",
"version": "8.0.7", "version": "9.0.0",
"description": "Wrap web apps natively", "description": "Wrap web apps natively",
"license": "MIT", "license": "MIT",
"author": "Goh Jia Hao", "author": "Goh Jia Hao",
@ -75,13 +75,13 @@
"tmp": "0.x" "tmp": "0.x"
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "25.x", "@types/jest": "26.x",
"@typescript-eslint/eslint-plugin": "2.x", "@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x", "@typescript-eslint/parser": "2.x",
"eslint": "6.x", "eslint": "6.x",
"eslint-config-prettier": "6.x", "eslint-config-prettier": "6.x",
"eslint-plugin-prettier": "3.x", "eslint-plugin-prettier": "3.x",
"jest": "25.x", "jest": "26.x",
"prettier": "2.x", "prettier": "2.x",
"rimraf": "3.x", "rimraf": "3.x",
"ts-loader": "6.x", "ts-loader": "6.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 = '8.2.3'; export const DEFAULT_ELECTRON_VERSION = '9.0.4';
export const DEFAULT_CHROME_VERSION = '80.0.3987.163'; export const DEFAULT_CHROME_VERSION = '83.0.4103.104';
export const ELECTRON_MAJOR_VERSION = parseInt( export const ELECTRON_MAJOR_VERSION = parseInt(
DEFAULT_ELECTRON_VERSION.split('.')[0], DEFAULT_ELECTRON_VERSION.split('.')[0],