Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.

Commit 11f7307

Browse files
Update electron-builder to fix node-gyp issue.
1 parent 19cf768 commit 11f7307

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
"license": "GPL-3.0",
77
"main": "app/js/main.js",
88
"scripts": {
9-
"postinstall": "install-app-deps && node install-deps.js && cd app && bower install && cd ../ui && bower install",
9+
"postinstall": "electron-builder install-app-deps && node install-deps.js && cd app && bower install && cd ../ui && bower install",
1010
"start": "export NODE_ENV=development || set NODE_ENV=development && electron app/js/main.js",
1111
"precompile": "rimraf out/* && node install-deps.js",
1212
"compile": "export CSC_IDENTITY_AUTO_DISCOVERY=false && build --win --mac --linux --x64 --ia32",
1313
"compile:lin": "build --linux --x64 --ia32",
1414
"compile:mac": "export CSC_IDENTITY_AUTO_DISCOVERY=false && build --mac --x64",
1515
"compile:win": "build --win --x64 --ia32",
16+
"compile:win64": "build --win --x64",
17+
"compile:win32": "build --win --x32",
1618
"prepublish": "rimraf out/*",
1719
"publish": "export CSC_IDENTITY_AUTO_DISCOVERY=false && build --win --mac --linux --x64 --ia32 --publish always",
1820
"publish:lin": "build --linux --x64 --ia32 --publish always",
@@ -35,7 +37,7 @@
3537
},
3638
"devDependencies": {
3739
"electron": "^1.6.10",
38-
"electron-builder": "^18.7.0",
40+
"electron-builder": "^19.7.3",
3941
"rimraf": "^2.6.1",
4042
"follow-redirects": "^1.2.3"
4143
},

package.testnet.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
"license": "GPL-3.0",
77
"main": "app/js/main.js",
88
"scripts": {
9-
"postinstall": "install-app-deps && node install-deps.js && cd app && bower install && cd ../ui && bower install",
9+
"postinstall": "electron-builder install-app-deps && node install-deps.js && cd app && bower install && cd ../ui && bower install",
1010
"start": "export NODE_ENV=development || set NODE_ENV=development && electron app/js/main.js",
1111
"precompile": "rimraf out/* && node install-deps.js",
1212
"compile": "export CSC_IDENTITY_AUTO_DISCOVERY=false && build --win --mac --linux --x64 --ia32",
1313
"compile:lin": "build --linux --x64 --ia32",
1414
"compile:mac": "export CSC_IDENTITY_AUTO_DISCOVERY=false && build --mac --x64",
1515
"compile:win": "build --win --x64 --ia32",
16+
"compile:win64": "build --win --x64",
17+
"compile:win32": "build --win --x32",
1618
"prepublish": "rimraf out/*",
1719
"publish": "export CSC_IDENTITY_AUTO_DISCOVERY=false && build --win --mac --linux --x64 --ia32 --publish always",
1820
"publish:lin": "build --linux --x64 --ia32 --publish always",
@@ -35,7 +37,7 @@
3537
},
3638
"devDependencies": {
3739
"electron": "^1.6.10",
38-
"electron-builder": "^18.7.0",
40+
"electron-builder": "^19.7.3",
3941
"rimraf": "^2.6.1",
4042
"follow-redirects": "^1.2.3"
4143
},

0 commit comments

Comments
 (0)