Skip to content

Commit e7053b0

Browse files
build: update cross-repo angular dependencies (21.2.x) (#33129)
* build: update cross-repo angular dependencies See associated pull request for more information. Closes #33061 as a pr takeover * fixup! build: update cross-repo angular dependencies --------- Co-authored-by: Angular Robot <angular-robot@google.com>
1 parent e2ef493 commit e7053b0

7 files changed

Lines changed: 510 additions & 548 deletions

File tree

MODULE.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,28 @@ bazel_dep(name = "bazel_skylib", version = "1.9.0")
1818
bazel_dep(name = "rules_browsers")
1919
git_override(
2020
module_name = "rules_browsers",
21-
commit = "652b57c41218be318f33fc92032696f53d3aa0ef",
21+
commit = "4de93bbfdbee2cea5162ac8070eb15846b15133d",
2222
remote = "https://github.com/angular/rules_browsers.git",
2323
)
2424

2525
bazel_dep(name = "rules_sass")
2626
git_override(
2727
module_name = "rules_sass",
28-
commit = "b5ddaa8e77509bcce35158ad20009636d3da4fbc",
28+
commit = "dfb751533767caa759a7162a34cfe0852f988976",
2929
remote = "https://github.com/angular/rules_sass.git",
3030
)
3131

3232
bazel_dep(name = "rules_angular")
3333
git_override(
3434
module_name = "rules_angular",
35-
commit = "6c36180c2efebc6526ef0e6a55a6d738c7de6909",
35+
commit = "03dade2ea0ea355e13ca88c550eaa633191b16ec",
3636
remote = "https://github.com/angular/rules_angular.git",
3737
)
3838

3939
bazel_dep(name = "devinfra")
4040
git_override(
4141
module_name = "devinfra",
42-
commit = "ba726e7bca0b08b125ccc6f93c233749e1213c17",
42+
commit = "e04d90adad1a125b29fbc4d97f425798768a8cb1",
4343
remote = "https://github.com/angular/dev-infra.git",
4444
)
4545

MODULE.bazel.lock

Lines changed: 14 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration/module-tests/find-all-modules.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export async function findAllEntryPointsAndExportedModules(packagePath: string)
4545
function scanExportsForModules(sf: ts.SourceFile): string[] {
4646
const moduleExports: string[] = [];
4747
const visit = (node: ts.Node) => {
48-
if (ts.isExportDeclaration(node) && ts.isNamedExports(node.exportClause)) {
48+
if (ts.isExportDeclaration(node) && node.exportClause && ts.isNamedExports(node.exportClause)) {
4949
moduleExports.push(
5050
...node.exportClause.elements
5151
.filter(e => e.name.text.endsWith('Module'))

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
},
5656
"version": "21.2.8",
5757
"dependencies": {
58+
"@angular/compiler-cli": "catalog:",
5859
"@angular-devkit/core": "catalog:",
5960
"@angular-devkit/schematics": "catalog:",
6061
"@angular/common": "catalog:",
@@ -71,12 +72,12 @@
7172
"rxjs-tslint-rules": "^4.34.8",
7273
"safevalues": "^1.2.0",
7374
"tslib": "^2.3.1",
75+
"typescript": "5.9.2",
7476
"zone.js": "~0.16.0"
7577
},
7678
"devDependencies": {
77-
"@angular/compiler-cli": "catalog:",
7879
"@angular/localize": "catalog:",
79-
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#1c95e84f330960eea28b5e3ed9b7a6a21b2c605b",
80+
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#40e97052a6e9a06c880b7f2d6de9bfa70a326a52",
8081
"@angular/platform-server": "catalog:",
8182
"@angular/router": "catalog:",
8283
"@babel/core": "^7.16.12",
@@ -145,7 +146,6 @@
145146
"tsickle": "0.46.3",
146147
"tslint": "^6.1.3",
147148
"tsutils": "^3.21.0",
148-
"typescript": "5.9.2",
149149
"vrsource-tslint-rules": "6.0.0",
150150
"yaml": "^2.8.1",
151151
"yargs": "^18.0.0",

0 commit comments

Comments
 (0)