Skip to content

Commit e4c07d9

Browse files
committed
fixup! build: update cross-repo angular dependencies
1 parent d5cf581 commit e4c07d9

4 files changed

Lines changed: 11 additions & 9 deletions

File tree

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
},
5656
"version": "21.2.7",
5757
"dependencies": {
58+
"@angular/compiler-cli": "catalog:",
5859
"@angular-devkit/core": "catalog:",
5960
"@angular-devkit/schematics": "catalog:",
6061
"@angular/common": "catalog:",
@@ -71,10 +72,10 @@
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:",
7980
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#40e97052a6e9a06c880b7f2d6de9bfa70a326a52",
8081
"@angular/platform-server": "catalog:",
@@ -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",

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// This file provides an ambient module declaration for the untyped locales import.
2+
declare module 'moment/min/locales';

0 commit comments

Comments
 (0)