Skip to content

Commit

Permalink
Fix OS X build problem (remove .npmrc), align to appropriate electron…
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenia committed Aug 22, 2016
1 parent b292230 commit 26e530c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"devDependencies": {
"electron-builder": "^5.30.0",
"electron-builder": "^5.33.0",
"electron-prebuilt": "^1.3.3",
"concurrently": "^2.0.0",
"typescript": "^1.8.10",
Expand All @@ -19,6 +19,7 @@
"appId": "com.meltedspark.electron-angular2-native",
"app-category-type": "com.meltedspark.opensource",
"asar": false,
"nodeGypRebuild": true,
"win": {
"target": "nsis"
},
Expand All @@ -33,12 +34,12 @@

"scripts": {
"postinstall": " typings install && install-app-deps",
"start": "tsc && concurrently \"npm run tsc:w\" \"electron ./app --enable-logging\"",
"dist:osx": "tsc && node-gyp rebuild && build --mac",
"dist:linux32": "tsc && node-gyp rebuild --arch=ia32 && build --linux --ia32",
"dist:linux64": "tsc && node-gyp rebuild --arch=x64 && build --linux --x64",
"dist:win32": "tsc && node-gyp rebuild --arch=ia32 && build --win --ia32",
"dist:win64": "tsc && node-gyp rebuild --arch=x64 && build --win --x64",
"start": "tsc && node-gyp-rebuild && concurrently \"npm run tsc:w\" \"electron ./app --enable-logging\"",
"dist:osx": "tsc && build --mac",
"dist:linux32": "tsc && build --linux --ia32",
"dist:linux64": "tsc && build --linux --x64",
"dist:win32": "tsc && build --win --ia32",
"dist:win64": "tsc && build --win --x64",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings"
Expand Down

0 comments on commit 26e530c

Please sign in to comment.