forked from hainproject/hain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change electron arch to x64 (fixing ShellExecuteEx bug)
- Loading branch information
Heejin
committed
Apr 13, 2016
1 parent
39f6060
commit d771846
Showing
5 changed files
with
13 additions
and
9 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
@echo on | ||
node-gyp rebuild --python=C:\Python27 --target=0.36.5 --arch=ia32 --dist-url=https://atom.io/download/atom-shell ^& copy .\build\Release\addon.node .\addon.node | ||
node-gyp rebuild --python=C:\Python27 --target=0.37.2 --arch=x64 --dist-url=https://atom.io/download/atom-shell ^& copy .\build\Release\addon.node .\addon.node |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,11 @@ | |
"name": "hain", | ||
"main": "app/main-es6/main.js", | ||
"scripts": { | ||
"start": "electron .", | ||
"dev": "gulp && electron .", | ||
"build": "gulp build-all", | ||
"test": "cd app && node ../node_modules/jest-cli/bin/jest" | ||
"test": "cd app && node ../node_modules/jest-cli/bin/jest", | ||
"postinstall": "npm install -g [email protected]" | ||
}, | ||
"author": "Heejin Lee <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -16,7 +18,7 @@ | |
"babel-preset-react": "^6.5.0", | ||
"del": "^2.2.0", | ||
"electron-packager": "^5.2.1", | ||
"electron-prebuilt": "^0.37.2", | ||
"electron-prebuilt": "0.37.2", | ||
"electron-winstaller": "^2.0.5", | ||
"eslint": "^2.3.0", | ||
"eslint-config-airbnb": "^6.1.0", | ||
|