Skip to content

Commit 9126511

Browse files
filipesilvadgp1130
authored andcommitted
build: update to 9.0.0 final
1 parent 07d0879 commit 9126511

File tree

9 files changed

+308
-203
lines changed

9 files changed

+308
-203
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@
8484
"typescript": "3.7.4"
8585
},
8686
"devDependencies": {
87-
"@angular/compiler": "9.0.0-rc.9",
88-
"@angular/compiler-cli": "9.0.0-rc.9",
87+
"@angular/compiler": "9.0.0",
88+
"@angular/compiler-cli": "9.0.0",
8989
"@bazel/bazel": "1.2.0",
9090
"@bazel/buildifier": "0.29.0",
9191
"@bazel/jasmine": "0.39.0",

packages/angular_devkit/build_angular/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,20 @@
7070
"worker-plugin": "3.2.0"
7171
},
7272
"devDependencies": {
73-
"@angular/animations": "9.0.0-rc.9",
74-
"@angular/cdk": "9.0.0-rc.7",
75-
"@angular/common": "9.0.0-rc.9",
76-
"@angular/compiler": "9.0.0-rc.9",
77-
"@angular/compiler-cli": "9.0.0-rc.9",
78-
"@angular/core": "9.0.0-rc.9",
79-
"@angular/forms": "9.0.0-rc.9",
80-
"@angular/localize": "9.0.0-rc.9",
81-
"@angular/material": "9.0.0-rc.7",
82-
"@angular/platform-browser": "9.0.0-rc.9",
83-
"@angular/platform-browser-dynamic": "9.0.0-rc.9",
84-
"@angular/platform-server": "9.0.0-rc.9",
85-
"@angular/router": "9.0.0-rc.9",
86-
"@angular/service-worker": "9.0.0-rc.9",
73+
"@angular/animations": "9.0.0",
74+
"@angular/cdk": "9.0.0",
75+
"@angular/common": "9.0.0",
76+
"@angular/compiler": "9.0.0",
77+
"@angular/compiler-cli": "9.0.0",
78+
"@angular/core": "9.0.0",
79+
"@angular/forms": "9.0.0",
80+
"@angular/localize": "9.0.0",
81+
"@angular/material": "9.0.0",
82+
"@angular/platform-browser": "9.0.0",
83+
"@angular/platform-browser-dynamic": "9.0.0",
84+
"@angular/platform-server": "9.0.0",
85+
"@angular/router": "9.0.0",
86+
"@angular/service-worker": "9.0.0",
8787
"codelyzer": "^5.0.0",
8888
"bootstrap": "^4.0.0",
8989
"font-awesome": "^4.7.0",
@@ -101,7 +101,7 @@
101101
"zone.js": "^0.10.0"
102102
},
103103
"peerDependencies": {
104-
"@angular/compiler-cli": ">=9.0.0-beta < 10",
104+
"@angular/compiler-cli": ">=9.0.0 < 10",
105105
"typescript": ">=3.6 < 3.8"
106106
},
107107
"peerDependenciesMeta": {

packages/angular_devkit/build_ng_packagr/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
"rxjs": "6.5.3"
1212
},
1313
"peerDependencies": {
14-
"ng-packagr": "^9.0.0-rc.7",
14+
"ng-packagr": "^9.0.0",
1515
"tsickle": "~0.37.1 || ~0.38.0"
1616
},
1717
"devDependencies": {
18-
"@angular/compiler": "9.0.0-rc.9",
19-
"@angular/compiler-cli": "9.0.0-rc.9",
18+
"@angular/compiler": "9.0.0",
19+
"@angular/compiler-cli": "9.0.0",
2020
"@angular-devkit/core": "0.0.0",
21-
"ng-packagr": "~9.0.0-rc.7",
21+
"ng-packagr": "~9.0.0",
2222
"tslib": "^1.10.0"
2323
},
2424
"peerDependenciesMeta": {

packages/ngtools/webpack/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"webpack-sources": "1.4.3"
2828
},
2929
"peerDependencies": {
30-
"@angular/compiler-cli": ">=9.0.0-beta < 10",
30+
"@angular/compiler-cli": ">=9.0.0 < 10",
3131
"typescript": ">=3.6 < 3.8",
3232
"webpack": "^4.0.0"
3333
},
3434
"devDependencies": {
35-
"@angular/compiler": "9.0.0-rc.9",
36-
"@angular/compiler-cli": "9.0.0-rc.9",
35+
"@angular/compiler": "9.0.0",
36+
"@angular/compiler-cli": "9.0.0",
3737
"typescript": "3.7.4",
3838
"webpack": "4.41.2"
3939
}

packages/schematics/angular/utility/latest-versions.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ export const latestVersions = {
1515
TsLib: '^1.10.0',
1616

1717
// The versions below must be manually updated when making a new devkit release.
18+
// For our e2e tests, these versions must match the latest tag present on the branch.
19+
// During RC periods they will not match the latest RC though, and should not be updated.
1820
DevkitBuildAngular: '~0.900.1',
1921
DevkitBuildNgPackagr: '~0.900.1',
2022
DevkitBuildWebpack: '~0.900.1',

tests/legacy-cli/e2e/assets/webpack/test-app-weird/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name": "test",
33
"license": "MIT",
44
"dependencies": {
5-
"@angular/common": "9.0.0-next.11",
6-
"@angular/compiler": "9.0.0-next.11",
7-
"@angular/compiler-cli": "9.0.0-next.11",
8-
"@angular/core": "9.0.0-next.11",
9-
"@angular/platform-browser": "9.0.0-next.11",
10-
"@angular/platform-browser-dynamic": "9.0.0-next.11",
11-
"@angular/platform-server": "9.0.0-next.11",
12-
"@angular/router": "9.0.0-next.11",
5+
"@angular/common": "9.0.0",
6+
"@angular/compiler": "9.0.0",
7+
"@angular/compiler-cli": "9.0.0",
8+
"@angular/core": "9.0.0",
9+
"@angular/platform-browser": "9.0.0",
10+
"@angular/platform-browser-dynamic": "9.0.0",
11+
"@angular/platform-server": "9.0.0",
12+
"@angular/router": "9.0.0",
1313
"@ngtools/webpack": "0.0.0",
1414
"core-js": "^3.0.0",
1515
"rxjs": "^6.4.2",

tests/legacy-cli/e2e/assets/webpack/test-app/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name": "test",
33
"license": "MIT",
44
"dependencies": {
5-
"@angular/common": "9.0.0-next.11",
6-
"@angular/compiler": "9.0.0-next.11",
7-
"@angular/compiler-cli": "9.0.0-next.11",
8-
"@angular/core": "9.0.0-next.11",
9-
"@angular/platform-browser": "9.0.0-next.11",
10-
"@angular/platform-browser-dynamic": "9.0.0-next.11",
11-
"@angular/platform-server": "9.0.0-next.11",
12-
"@angular/router": "9.0.0-next.11",
5+
"@angular/common": "9.0.0",
6+
"@angular/compiler": "9.0.0",
7+
"@angular/compiler-cli": "9.0.0",
8+
"@angular/core": "9.0.0",
9+
"@angular/platform-browser": "9.0.0",
10+
"@angular/platform-browser-dynamic": "9.0.0",
11+
"@angular/platform-server": "9.0.0",
12+
"@angular/router": "9.0.0",
1313
"@ngtools/webpack": "0.0.0",
1414
"core-js": "^3.0.0",
1515
"rxjs": "^6.4.0",

tests/legacy-cli/e2e/assets/webpack/test-server-app/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "test",
33
"license": "MIT",
44
"dependencies": {
5-
"@angular/animations": "9.0.0-next.11",
6-
"@angular/common": "9.0.0-next.11",
7-
"@angular/compiler": "9.0.0-next.11",
8-
"@angular/compiler-cli": "9.0.0-next.11",
9-
"@angular/core": "9.0.0-next.11",
10-
"@angular/platform-browser": "9.0.0-next.11",
11-
"@angular/platform-browser-dynamic": "9.0.0-next.11",
12-
"@angular/platform-server": "9.0.0-next.11",
13-
"@angular/router": "9.0.0-next.11",
5+
"@angular/animations": "9.0.0",
6+
"@angular/common": "9.0.0",
7+
"@angular/compiler": "9.0.0",
8+
"@angular/compiler-cli": "9.0.0",
9+
"@angular/core": "9.0.0",
10+
"@angular/platform-browser": "9.0.0",
11+
"@angular/platform-browser-dynamic": "9.0.0",
12+
"@angular/platform-server": "9.0.0",
13+
"@angular/router": "9.0.0",
1414
"@ngtools/webpack": "0.0.0",
1515
"core-js": "^3.0.0",
1616
"rxjs": "^6.4.2",

0 commit comments

Comments
 (0)