remove env
This commit is contained in:
parent
d1f56f40bc
commit
9346150514
3 changed files with 3 additions and 12 deletions
|
@ -5,7 +5,7 @@
|
|||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "electron ./src/main",
|
||||
"dev": "NODE_ENV=development electron ./src/main/index.js",
|
||||
"dev": "electron ./src/main/index.js",
|
||||
"postinstall": "node build/download-sdk.js"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
const { BrowserWindow } = require("electron");
|
||||
const url = require("url");
|
||||
const path = require("path");
|
||||
const IS_DEV = process.env.NODE_ENV === "development";
|
||||
|
||||
// Keep a global reference of the window object, if you don't, the window will
|
||||
// be closed automatically when the JavaScript object is garbage collected.
|
||||
|
@ -20,11 +19,6 @@ function createWindow() {
|
|||
})
|
||||
);
|
||||
|
||||
// Open the DevTools.
|
||||
// if (IS_DEV) {
|
||||
// mainWindow.webContents.openDevTools();
|
||||
// }
|
||||
|
||||
// Emitted when the window is closed.
|
||||
mainWindow.on("closed", function() {
|
||||
// Dereference the window object, usually you would store windows
|
||||
|
|
|
@ -4,12 +4,9 @@ const path = require("path");
|
|||
const findProcess = require("find-process");
|
||||
const createWindow = require("./create-window");
|
||||
const SDK = require("./sdk");
|
||||
const IS_DEV = process.env.NODE_ENV === "development";
|
||||
|
||||
// Auto-reload when we make changes
|
||||
if (IS_DEV) {
|
||||
require("electron-reload")(__dirname);
|
||||
}
|
||||
// Simple auto reload
|
||||
require("electron-reload")(__dirname);
|
||||
|
||||
// This method will be called when Electron has finished
|
||||
// initialization and is ready to create browser windows.
|
||||
|
|
Loading…
Reference in a new issue