Skip to content

Commit c93f4a8

Browse files
committed
fixup! build: update cross-repo angular dependencies
1 parent 4d457d1 commit c93f4a8

3 files changed

Lines changed: 5 additions & 5 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@
7171
"rxjs-tslint-rules": "^4.34.8",
7272
"safevalues": "^1.2.0",
7373
"tslib": "^2.3.1",
74+
"typescript": "6.0.2",
7475
"zone.js": "~0.16.0"
7576
},
7677
"devDependencies": {
@@ -145,7 +146,6 @@
145146
"tsickle": "0.46.3",
146147
"tslint": "^6.1.3",
147148
"tsutils": "^3.21.0",
148-
"typescript": "6.0.2",
149149
"vrsource-tslint-rules": "6.0.0",
150150
"yaml": "^2.8.1",
151151
"yargs": "^18.0.0",

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)