Skip to content

Commit db2a21d

Browse files
authored
fix(ci): update next stage build dependencies & scripts (#5696)
1 parent db437f3 commit db2a21d

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ jobs:
147147
stage: deploy
148148
script:
149149
- if [[ "$NGV" == "ivy" ]]; then npm run demo.build:ivy; fi
150-
- if [[ "$NGV" == "latest" ]]; then npm run demo.build:latest; fi
151-
- if [[ "$NGV" != "latest" && "$NGV" != "ivy" ]]; then npm run demo.build; fi
150+
- if [[ "$NGV" == "latest" && "$NGV" == "next" ]]; then npm run demo.build:latest; fi
151+
- if [[ "$NGV" != "latest" && "$NGV" != "ivy" && "$NGV" != "next" ]]; then npm run demo.build; fi
152152
deploy:
153153
provider: surge
154154
project: ./gh-pages/

scripts/build-modules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async function buildAll() {
4040
const cli = meow(`
4141
Options
4242
--watch Rebuild on source change
43-
--latest required for Latest Env
43+
--latest required for Latest & Next Env
4444
`, {
4545
flags: {
4646
watch: {

scripts/ci/npm-ng-next.sh

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
#!/usr/bin/env bash
22

3-
npm i @angular/animations@9.0.0-next.2 \
4-
@angular/core@9.0.0-next.2 \
5-
@angular-devkit/core@9.0.0-next.2 \
6-
@angular-devkit/schematics@9.0.0-next.2 \
7-
@angular/cli@9.0.0-next.2 \
8-
@angular/common@9.0.0-next.2 \
9-
@angular/compiler-cli@9.0.0-next.2 \
10-
@angular/compiler@9.0.0-next.2 \
11-
@angular/forms@9.0.0-next.2 \
12-
@angular/language-service@9.0.0-next.2 \
13-
@angular/platform-browser-dynamic@9.0.0-next.2 \
14-
@angular/platform-browser@9.0.0-next.2 \
15-
@angular/platform-server@9.0.0-next.2 \
16-
@angular/router@9.0.0-next.2 \
17-
@angular/service-worker@9.0.0-next.2 \
18-
@schematics/angular@9.0.0-next.2 \
19-
typescript@3.5.3 \
3+
npm i @angular/animations@next \
4+
@angular/core@next \
5+
@angular-devkit/core@next \
6+
@angular-devkit/schematics@next \
7+
@angular/cli@next \
8+
@angular/common@next \
9+
@angular/compiler-cli@next \
10+
@angular/compiler@next \
11+
@angular/forms@next \
12+
@angular/language-service@next \
13+
@angular/platform-browser-dynamic@next \
14+
@angular/platform-browser@next \
15+
@angular/platform-server@next \
16+
@angular/router@next \
17+
@angular/service-worker@next \
18+
@schematics/angular@next \
19+
@types/node@13.7.6 \
20+
typescript@3.7.5 \
2021
tsickle@0.35.0 \
2122
rxjs@6.5.2

0 commit comments

Comments
 (0)