From 1f9adbd3cf405afef739e23dd73407e5ec83926f Mon Sep 17 00:00:00 2001 From: Jason Kurian Date: Tue, 23 Aug 2016 04:25:51 -0400 Subject: [PATCH] Switch from electron-prebuilt to electron --- .gitignore | 1 + bin/cmd.js | 2 +- bin/package.js | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ab57381f..a681feb2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules build dist +npm-debug.log.* diff --git a/bin/cmd.js b/bin/cmd.js index e18f3268..34b6a91f 100755 --- a/bin/cmd.js +++ b/bin/cmd.js @@ -1,6 +1,6 @@ #!/usr/bin/env node -var electron = require('electron-prebuilt') +var electron = require('electron') var cp = require('child_process') var path = require('path') diff --git a/bin/package.js b/bin/package.js index 6e622d64..c5f73b6b 100755 --- a/bin/package.js +++ b/bin/package.js @@ -105,7 +105,7 @@ var all = { prune: true, // The Electron version with which the app is built (without the leading 'v') - version: require('electron-prebuilt/package.json').version + version: require('electron/package.json').version } var darwin = { diff --git a/package.json b/package.json index 96a9837f..2b76fb5e 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "deep-equal": "^1.0.1", "dlnacasts": "^0.1.0", "drag-drop": "^2.12.1", - "electron-prebuilt": "1.3.3", + "electron": "1.3.3", "fs-extra": "^0.30.0", "hat": "0.0.3", "iso-639-1": "^1.2.1",