Skip to content

Commit

Permalink
fix ng build configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Jul 6, 2024
1 parent 694aa15 commit a049a8c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion webapp-ng/Dockerfile-webapp-dev
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN npm install --legacy-peer-deps

COPY . .

RUN npm run build -c configuration_dev
RUN npm run build_dev

# -----------------

Expand Down
2 changes: 1 addition & 1 deletion webapp-ng/Dockerfile-webapp-island
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN npm install --legacy-peer-deps

COPY . .

RUN npm run build -c configuration_island
RUN npm run build_island

# -----------------

Expand Down
2 changes: 1 addition & 1 deletion webapp-ng/Dockerfile-webapp-prod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN npm install --legacy-peer-deps

COPY . .

RUN npm run build -c configuration_prod
RUN npm run build_prod

# -----------------

Expand Down
2 changes: 1 addition & 1 deletion webapp-ng/Dockerfile-webapp-stage
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN npm install --legacy-peer-deps

COPY . .

RUN npm run build -c configuration_stage
RUN npm run build_stage

# -----------------

Expand Down
5 changes: 4 additions & 1 deletion webapp-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
"ng": "ng",
"start": "ng serve",
"start_with_proxy": "ng serve --proxy-config proxy.conf.json",
"build": "ng build --configuration production",
"build_prod": "ng build -c configuration_prod",
"build_dev": "ng build -c configuration_dev",
"build_stage": "ng build -c configuration_stage",
"build_island": "ng build -c configuration_island",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"lint": "ng lint",
Expand Down

0 comments on commit a049a8c

Please sign in to comment.