Merge pull request #195 from electron-userland/upgrade-electron-download

Upgrade electron download to fix Mac CI issue
This commit is contained in:
Kevin Sawicki 2016-09-27 16:05:23 -07:00 committed by GitHub
commit f4962a5212
2 changed files with 3 additions and 5 deletions

View file

@ -11,5 +11,3 @@ node_js:
branches: branches:
only: only:
- master - master
install:
- npm --silent install

View file

@ -6,7 +6,7 @@
"scripts": { "scripts": {
"cache-clean": "rm -rf ~/.electron && rm -rf dist", "cache-clean": "rm -rf ~/.electron && rm -rf dist",
"postinstall": "node install.js", "postinstall": "node install.js",
"pretest": "npm run cache-clean && npm --silent run postinstall", "pretest": "npm run cache-clean && npm run postinstall",
"test": "tape test/*.js && standard" "test": "tape test/*.js && standard"
}, },
"bin": { "bin": {
@ -15,7 +15,7 @@
"main": "index.js", "main": "index.js",
"dependencies": { "dependencies": {
"extract-zip": "^1.0.3", "extract-zip": "^1.0.3",
"electron-download": "^3.0.0" "electron-download": "^3.0.1"
}, },
"devDependencies": { "devDependencies": {
"home-path": "^0.1.1", "home-path": "^0.1.1",
@ -31,4 +31,4 @@
"keywords": [ "keywords": [
"electron" "electron"
] ]
} }