2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-11-15 17:27:08 +00:00

Update deps, default to Electron 1.8.4 stable

Semver-major deps upgrades: axios electron-packager require-dir
This commit is contained in:
Ronan Jouchet 2018-03-16 17:54:19 -04:00
parent fc4d365987
commit 8981e55783
2 changed files with 4 additions and 4 deletions

View File

@ -42,11 +42,11 @@
"homepage": "https://github.com/jiahaog/nativefier#readme", "homepage": "https://github.com/jiahaog/nativefier#readme",
"dependencies": { "dependencies": {
"async": "^2.6.0", "async": "^2.6.0",
"axios": "^0.17.1", "axios": "^0.18.0",
"babel-polyfill": "^6.26.0", "babel-polyfill": "^6.26.0",
"cheerio": "^1.0.0-rc.2", "cheerio": "^1.0.0-rc.2",
"commander": "^2.14.0", "commander": "^2.14.0",
"electron-packager": "^10.1.2", "electron-packager": "^11.1.0",
"gitcloud": "^0.1.0", "gitcloud": "^0.1.0",
"hasbin": "^1.2.3", "hasbin": "^1.2.3",
"lodash": "^4.17.5", "lodash": "^4.17.5",
@ -79,7 +79,7 @@
"isparta": "^4.0.0", "isparta": "^4.0.0",
"jest": "^22.1.4", "jest": "^22.1.4",
"regenerator-runtime": "^0.11.1", "regenerator-runtime": "^0.11.1",
"require-dir": "^0.3.2", "require-dir": "^1.0.0",
"run-sequence": "^2.2.1", "run-sequence": "^2.2.1",
"webpack-stream": "^4.0.0" "webpack-stream": "^4.0.0"
}, },

View File

@ -1,5 +1,5 @@
import path from 'path'; import path from 'path';
export const DEFAULT_APP_NAME = 'APP'; export const DEFAULT_APP_NAME = 'APP';
export const ELECTRON_VERSION = '1.8.2'; export const ELECTRON_VERSION = '1.8.4';
export const PLACEHOLDER_APP_DIR = path.join(__dirname, './../', 'app'); export const PLACEHOLDER_APP_DIR = path.join(__dirname, './../', 'app');