File tree 1 file changed +10
-1
lines changed
packages/angular/cli/commands
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,16 @@ export class VersionCommand extends Command<VersionCommandSchema> {
182
182
private async getPackageManager ( ) : Promise < string > {
183
183
try {
184
184
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 ( ) ;
186
195
187
196
return `${ manager } ${ version } ` ;
188
197
} catch {
You can’t perform that action at this time.
0 commit comments