Skip to content

Commit 54a3504

Browse files
authored
build: update to Angular v18 next (#28734)
Bumps the repo to the `next` version of Angular 18.
1 parent d5aa679 commit 54a3504

File tree

19 files changed

+15317
-14972
lines changed

19 files changed

+15317
-14972
lines changed

integration/harness-e2e-cli/BUILD.bazel

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
load("@bazel_skylib//lib:dicts.bzl", "dicts")
2-
load("//tools:integration.bzl", "CLI_PROJECT_MAPPINGS")
32
load("//tools:defaults.bzl", "node_integration_test")
43

54
npmPackageMappings = dicts.add(
6-
dicts.omit(
7-
CLI_PROJECT_MAPPINGS,
8-
# Exclude rxjs, because we want to use the version from the package.json.
9-
# Version 6.x that the rest of the project uses has some packaging issues. See:
10-
# https://github.com/angular/components/pull/25241#issuecomment-1178701633
11-
["@npm//:rxjs_archive"],
12-
),
5+
# TODO(crisbeto): temporarily disabled until Tooling makes an 18.x release.
6+
# dicts.omit(
7+
# CLI_PROJECT_MAPPINGS,
8+
# # Exclude rxjs, because we want to use the version from the package.json.
9+
# # Version 6.x that the rest of the project uses has some packaging issues. See:
10+
# # https://github.com/angular/components/pull/25241#issuecomment-1178701633
11+
# ["@npm//:rxjs_archive"],
12+
# ),
13+
{},
1314
{
1415
"//src/cdk:npm_package_archive": "@angular/cdk",
1516
"//src/material:npm_package_archive": "@angular/material",

integration/harness-e2e-cli/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,24 @@
1313
},
1414
"private": true,
1515
"dependencies": {
16-
"@angular/animations": "file:../../node_modules/@angular/animations",
16+
"@angular/animations": "^17.3.0",
1717
"@angular/cdk": "file:../../dist/releases/cdk",
18-
"@angular/common": "file:../../node_modules/@angular/common",
19-
"@angular/compiler": "file:../../node_modules/@angular/compiler",
20-
"@angular/core": "file:../../node_modules/@angular/core",
21-
"@angular/forms": "file:../../node_modules/@angular/forms",
18+
"@angular/common": "^17.3.0",
19+
"@angular/compiler": "^17.3.0",
20+
"@angular/core": "^17.3.0",
21+
"@angular/forms": "^17.3.0",
2222
"@angular/material": "file:../../dist/releases/material",
23-
"@angular/platform-browser": "file:../../node_modules/@angular/platform-browser",
24-
"@angular/platform-browser-dynamic": "file:../../node_modules/@angular/platform-browser-dynamic",
25-
"@angular/router": "file:../../node_modules/@angular/router",
23+
"@angular/platform-browser": "^17.3.0",
24+
"@angular/platform-browser-dynamic": "^17.3.0",
25+
"@angular/router": "^17.3.0",
2626
"rxjs": "^7.5.5",
2727
"tslib": "^2.3.0",
2828
"zone.js": "~0.13.0"
2929
},
3030
"devDependencies": {
31-
"@angular-devkit/build-angular": "file:../../node_modules/@angular-devkit/build-angular",
32-
"@angular/cli": "file:../../node_modules/@angular/cli",
33-
"@angular/compiler-cli": "file:../../node_modules/@angular/compiler-cli",
31+
"@angular-devkit/build-angular": "^17.3.0",
32+
"@angular/cli": "^17.3.0",
33+
"@angular/compiler-cli": "^17.3.0",
3434
"@types/jasmine": "~3.10.0",
3535
"@types/node": "^12.11.1",
3636
"@types/selenium-webdriver": "3.0.19",
@@ -44,7 +44,7 @@
4444
"karma-jasmine-html-reporter": "~1.7.0",
4545
"selenium-webdriver": "3.6.0",
4646
"ts-node": "~10.9.1",
47-
"typescript": "file:../../node_modules/typescript",
47+
"typescript": "~5.3.3",
4848
"wait-on": "^6.0.0"
4949
}
5050
}

0 commit comments

Comments
 (0)