Last active
          August 23, 2018 08:16 
        
      - 
      
- 
        Save dai-shi/15d8edac8075fc70e36f10fa531540a6 to your computer and use it in GitHub Desktop. 
Revisions
- 
        dai-shi revised this gist Aug 23, 2018 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewingThis file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ #!/usr/bin/env node const electronInstaller = require('electron-winstaller'); (async () => { try { 
- 
        dai-shi revised this gist Aug 23, 2018 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewingThis file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ { "name": "electron-winstaller-runner", "version": "1.0.0", "bin": "./index.js", "dependencies": { "electron-winstaller": "latest" } 
- 
        dai-shi revised this gist Aug 23, 2018 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewingThis file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ { "name": "electron-winstaller-runner", "version": "1.0.0", "dependencies": { "electron-winstaller": "latest" } 
- 
        dai-shi created this gist Aug 23, 2018 .There are no files selected for viewingThis file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ const electronInstaller = require('electron-winstaller'); (async () => { try { const options = JSON.parse(process.env.OPTIONS || process.argv[process.argv.length - 1]); await electronInstaller.createWindowsInstaller(options); } catch (e) { console.error(e); } })(); This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ { "name": "electron-winstaller-runner", "dependencies": { "electron-winstaller": "latest" } }