From 12e51b51c97117e2e83012b327a3934143abbd9f Mon Sep 17 00:00:00 2001 From: Dennis Brown Date: Thu, 1 Mar 2018 21:31:00 -0600 Subject: [PATCH] add development script --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 8af02d2..791a0a5 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "electron .", + "dev": "NODE_ENV='development' electron .", "pack-mac": "electron-packager . 6502Desktop --asar.unpack=protocol-link.html --overwrite --platform=darwin --arch=x64 --icon=assets/mac/app.icns --out=out --osx-sign.identity='Developer ID Application: 3DEsprit' --appBundleId='6502Desktop' appCategoryType=public.app-category.education", "pack-win": "electron-packager . 6502Desktop --asar.unpack=protocol-link.html --overwrite --platform=win32 --arch=x64 --icon=assets/win/app.ico --out=out", "pack-linux": "electron-packager . 6502Desktop --asar.unpack=protocol-link.html --overwrite --platform=linux --arch=x64 --out=out --prune=true"