Skip to content

Commit

Permalink
Fix build commands in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
cutoffthetop committed Feb 7, 2024
1 parent 46c3457 commit 98cb6f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ karma:
prod:
# build the prod angular package
@ echo building prod package; \
npm run build --prod; \
npm run ng build -- --configuration prod; \

stage:
# build the stage angular package
@ echo building stage package; \
npm run build --stage; \
npm run ng build -- --configuration stage; \

dev:
# build the dev angular package
@ echo building dev package; \
npm run build --dev; \
npm run ng build -- --configuration dev; \

0 comments on commit 98cb6f9

Please sign in to comment.