File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
packages/angular/cli/src/package-managers Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ jobs:
178178 fail-fast : false
179179 matrix :
180180 node : [22]
181- subset : [yarn, pnpm, bun]
181+ subset : [bun]
182182 shard : [0, 1, 2]
183183 runs-on : ubuntu-latest
184184 steps :
Original file line number Diff line number Diff line change @@ -134,12 +134,14 @@ export const NodeJS_HOST: Host = {
134134 if ( code === 0 ) {
135135 resolve ( { stdout, stderr } ) ;
136136 } else {
137+ console . log ( { stdout, stderr, code } ) ;
137138 const message = `Process exited with code ${ code } .` ;
138139 reject ( new PackageManagerError ( message , stdout , stderr , code ) ) ;
139140 }
140141 } ) ;
141142
142143 childProcess . on ( 'error' , ( err ) => {
144+ console . log ( { err } ) ;
143145 if ( err . name === 'AbortError' ) {
144146 const message = `Process timed out.` ;
145147 reject ( new PackageManagerError ( message , stdout , stderr , null ) ) ;
You can’t perform that action at this time.
0 commit comments