Skip to content

Commit

Permalink
small tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
keverw committed Nov 30, 2016
1 parent c90b70b commit e2e02ed
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion app/main.js
Expand Up @@ -39,7 +39,7 @@ global.isAppClosing = false;
if (global.appConfig.dev)
{
require('electron-reload')(__dirname, {
electron: require('electron')
//electron: require('electron')
});
}

Expand Down
1 change: 1 addition & 0 deletions app/package.json
Expand Up @@ -16,6 +16,7 @@
"electron-contextmenu-middleware": "1.0.2",
"electron-input-menu": "2.0.3",
"electron-irpc": "0.0.2",
"electron-reload": "^1.0.3",
"electron-spell-check-provider": "1.0.0",
"fast-clone": "1.3.0",
"html-to-text": "2.1.3",
Expand Down
43 changes: 21 additions & 22 deletions package.json
@@ -1,25 +1,24 @@
{
"private": true,
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && electron ./app",
"pack": "build --dir",
"distall": "build --dir --ia32 --x64 -m dmg -l deb rpm -w NSIS",
"distmac": "build --dir --x64 -m dmg",
"distwin": "build --dir --ia32 --x64 -w NSIS",
"distlin": "build --dir --ia32 --x64 -l deb rpm"
},
"build": {
"appId": "com.keverw.steemwrite",
"asar": false,
"mac": {
"category": "public.app-category.productivity"
"private": true,
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install && ./node_modules/.bin/electron ./app",
"pack": "build --dir",
"distall": "build --dir --ia32 --x64 -m dmg -l deb rpm -w NSIS",
"distmac": "build --dir --x64 -m dmg",
"distwin": "build --dir --ia32 --x64 -w NSIS",
"distlin": "build --dir --ia32 --x64 -l deb rpm"
},
"build": {
"appId": "com.keverw.steemwrite",
"asar": false,
"mac": {
"category": "public.app-category.productivity"
}
},
"devDependencies": {
"debug-menu": "0.4.0",
"electron": "1.4.10",
"electron-builder": "10.3.0"
}
},
"devDependencies": {
"debug-menu": "0.4.0",
"electron": "1.4.10",
"electron-builder": "10.3.0",
"electron-reload": "1.0.3"
}
}

0 comments on commit e2e02ed

Please sign in to comment.