File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/angular/cli/src/utilities
tests/legacy-cli/e2e/setup Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -188,12 +188,12 @@ export class PackageManagerUtils {
188188
189189 private async run (
190190 args : string [ ] ,
191- options : { cwd ?: string ; silent ?: boolean ; } = { } ,
191+ options : { cwd ?: string ; silent ?: boolean } = { } ,
192192 ) : Promise < boolean > {
193193 const { cwd = process . cwd ( ) , silent = false } = options ;
194194
195195 return new Promise ( ( resolve ) => {
196- const bufferedOutput : { stream : NodeJS . WriteStream ; data : Buffer ; } [ ] = [ ] ;
196+ const bufferedOutput : { stream : NodeJS . WriteStream ; data : Buffer } [ ] = [ ] ;
197197
198198 const childProcess = spawn ( `${ this . name } ${ args . join ( ' ' ) } ` , {
199199 // Always pipe stderr to allow for failures to be reported
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const PACKAGE_MANAGER_VERSION = {
1010 'deno' : '2.5.6' ,
1111} ;
1212
13- export default async function ( ) {
13+ export default async function ( ) {
1414 const argv = getGlobalVariable ( 'argv' ) ;
1515 if ( argv . noglobal ) {
1616 return ;
You can’t perform that action at this time.
0 commit comments