Skip to content

Commit 88ee85c

Browse files
committed
fix(@angular/cli): disable update notifier when retrieving package manager version during ng version
NPM updater notifier will prevents the child process from closing until it timeout after 3 minutes. Closes #21172
1 parent da32daa commit 88ee85c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

packages/angular/cli/commands/version-impl.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,16 @@ export class VersionCommand extends Command<VersionCommandSchema> {
182182
private async getPackageManager(): Promise<string> {
183183
try {
184184
const manager = await getPackageManager(this.context.root);
185-
const version = execSync(`${manager} --version`, { encoding: 'utf8', stdio: 'pipe' }).trim();
185+
const version = execSync(`${manager} --version`, {
186+
encoding: 'utf8',
187+
stdio: ['ignore', 'pipe', 'ignore'],
188+
env: {
189+
...process.env,
190+
// NPM updater notifier will prevents the child process from closing until it timeout after 3 minutes.
191+
NO_UPDATE_NOTIFIER: '1',
192+
NPM_CONFIG_UPDATE_NOTIFIER: 'false',
193+
},
194+
}).trim();
186195

187196
return `${manager} ${version}`;
188197
} catch {

0 commit comments

Comments
 (0)