Skip to content

Commit 09f8659

Browse files
committed
fix(@angular/cli): display package manager during ng update
This also aligns the output to have the same style of `ng add`
1 parent 371da23 commit 09f8659

File tree

1 file changed

+1
-1
lines changed
  • packages/angular/cli/src/commands/update

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ export class UpdateCommandModule extends CommandModule<UpdateCommandArgs> {
220220
}
221221
}
222222

223-
logger.info(`Using package manager: '${packageManager}'`);
223+
logger.info(`Using package manager: ${colors.grey(packageManager.name)}`);
224224
logger.info('Collecting installed dependencies...');
225225

226226
const rootDependencies = await getProjectDependencies(this.context.root);

0 commit comments

Comments
 (0)