Update deps, default to Electron 1.8.2 stable

Semver-major deps upgrades: babel-jest electron-packager gulp-mocha jest shelljs
This commit is contained in:
Ronan Jouchet 2018-02-06 21:56:39 -05:00
parent 7270f7d295
commit fc4d365987
2 changed files with 17 additions and 17 deletions

View File

@ -45,42 +45,42 @@
"axios": "^0.17.1", "axios": "^0.17.1",
"babel-polyfill": "^6.26.0", "babel-polyfill": "^6.26.0",
"cheerio": "^1.0.0-rc.2", "cheerio": "^1.0.0-rc.2",
"commander": "^2.11.0", "commander": "^2.14.0",
"electron-packager": "^9.1.0", "electron-packager": "^10.1.2",
"gitcloud": "^0.1.0", "gitcloud": "^0.1.0",
"hasbin": "^1.2.3", "hasbin": "^1.2.3",
"lodash": "^4.17.4", "lodash": "^4.17.5",
"loglevel": "^1.5.1", "loglevel": "^1.6.1",
"ncp": "^2.0.0", "ncp": "^2.0.0",
"page-icon": "^0.3.0", "page-icon": "^0.3.0",
"progress": "^2.0.0", "progress": "^2.0.0",
"sanitize-filename": "^1.6.1", "sanitize-filename": "^1.6.1",
"shelljs": "^0.7.8", "shelljs": "^0.8.1",
"source-map-support": "^0.5.0", "source-map-support": "^0.5.3",
"tmp": "0.0.33", "tmp": "0.0.33",
"validator": "^9.1.1" "validator": "^9.4.0"
}, },
"devDependencies": { "devDependencies": {
"babel-core": "^6.26.0", "babel-core": "^6.26.0",
"babel-jest": "^21.2.0", "babel-jest": "^22.1.0",
"babel-loader": "^7.1.2", "babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1", "babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0", "babel-register": "^6.26.0",
"chai": "^4.1.2", "chai": "^4.1.2",
"del": "^3.0.0", "del": "^3.0.0",
"eslint": "^4.11.0", "eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0", "eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0", "eslint-plugin-import": "^2.8.0",
"gulp": "^3.9.1", "gulp": "^3.9.1",
"gulp-babel": "^7.0.0", "gulp-babel": "^7.0.1",
"gulp-istanbul": "^1.1.2", "gulp-istanbul": "^1.1.3",
"gulp-mocha": "^4.3.1", "gulp-mocha": "^5.0.0",
"gulp-sourcemaps": "^2.6.1", "gulp-sourcemaps": "^2.6.4",
"isparta": "^4.0.0", "isparta": "^4.0.0",
"jest": "^21.2.1", "jest": "^22.1.4",
"regenerator-runtime": "^0.11.0", "regenerator-runtime": "^0.11.1",
"require-dir": "^0.3.2", "require-dir": "^0.3.2",
"run-sequence": "^2.2.0", "run-sequence": "^2.2.1",
"webpack-stream": "^4.0.0" "webpack-stream": "^4.0.0"
}, },
"engines": { "engines": {

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.7.9'; export const ELECTRON_VERSION = '1.8.2';
export const PLACEHOLDER_APP_DIR = path.join(__dirname, './../', 'app'); export const PLACEHOLDER_APP_DIR = path.join(__dirname, './../', 'app');