From 5d8d2a3c2b241c110e84b8bb79c34d320ba2351a Mon Sep 17 00:00:00 2001 From: Piotr Pekala Date: Wed, 25 Sep 2019 05:23:10 -0700 Subject: [PATCH] Build command updated --- .appveyor.yml | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 5ee6f37d..0948a8d3 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,7 +18,6 @@ install: - yarn install build_script: - - node --max-old-space-size=8192 - yarn buildforelectron - "%PYTHON%\\python.exe -m pip install -r scripts\\requirements.txt" - "%PYTHON%\\python.exe scripts\\build.py download -a" diff --git a/package.json b/package.json index 6c9717d8..54891ea4 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "start": "ng serve", "startforelectron": "ng serve --configuration=electronDev", "build": "ng build", - "buildforelectron": "ng build --configuration=electronProd", + "buildforelectron": "node --max_old_space_size=8192 ng build --configuration=electronProd", "buildforgithub": "ng build --configuration=githubProd", "test": "ng test", "lint": "ng lint",