Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
fix(angular): add prod param to build command (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrugg authored and francoischalifour committed Oct 15, 2018
1 parent 520600e commit 0bc801b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/__snapshots__/e2e-templates.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ exports[`Templates Angular InstantSearch File content: package.json 1`] = `
\\"scripts\\": {
\\"ng\\": \\"ng\\",
\\"start\\": \\"ng serve --port 3000\\",
\\"build\\": \\"ng build\\",
\\"build\\": \\"ng build --prod\\",
\\"test\\": \\"ng test\\",
\\"lint\\": \\"ng lint\\",
\\"e2e\\": \\"ng e2e\\"
Expand Down
2 changes: 1 addition & 1 deletion src/templates/Angular InstantSearch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"ng": "ng",
"start": "ng serve --port 3000",
"build": "ng build",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
Expand Down

0 comments on commit 0bc801b

Please sign in to comment.