Skip to content

Commit 82690e7

Browse files
committed
WIP
1 parent ed36a44 commit 82690e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/angular/cli/src/commands/update/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
432432
identifier: npa.Result;
433433
node: InstalledPackage;
434434
}[] = [];
435-
435+
console.log('PACKAGES: ', JSON.stringify([...rootDependencies.keys()], null, 2));
436436
// Validate packages actually are part of the workspace
437437
for (const pkg of packages) {
438438
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion

packages/angular/cli/src/package-managers/parsers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function parseNpmLikeDependencies(
9191

9292
return dependencies;
9393
}
94-
94+
console.log('RAW LIST: ', stdout);
9595
let data = JSON.parse(stdout);
9696
if (Array.isArray(data)) {
9797
// pnpm returns an array of projects.

0 commit comments

Comments
 (0)