Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesjo committed Sep 18, 2019
1 parent 3998ea7 commit 0bc9b52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"ng": "ng",
"start": "yarn electron:build && cross-env NODE_ENV=DEV electron .",
"startFrontend": "ng serve",
"serveProd": "node --max_old_space_size=8048 ./node_modules/@angular/cli/bin/ng serve --prod",
"buildFrontend": "ng build --aot --prod",
"buildFrontendElectron": "ng build --aot --prod --base-href=''",
"serveProd": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng serve --prod",
"buildFrontend": "node --max_old_space_size=4096 node_modules/@angular/cli/bin/ng build --aot --prod",
"buildFrontendElectron": "node --max_old_space_size=4096 node_modules/@angular/cli/bin/ng build --aot --prod --base-href=''",
"buildAllElectron": "yarn buildFrontendElectron && yarn electron:build",
"buildApp": "yarn buildAllElectron && yarn electron-builder",
"test": "ng test",
Expand Down

0 comments on commit 0bc9b52

Please sign in to comment.