1
1
import { getPackages } from "@manypkg/get-packages" ;
2
- import path from "path" ;
3
- import spawn from "spawndamnit" ;
2
+ import { exec } from "tinyexec" ;
4
3
import * as logger from "./logger" ;
5
4
import { ExitError } from "./errors" ;
6
5
@@ -12,11 +11,13 @@ export async function runCmd(args: string[], cwd: string) {
12
11
} ) ;
13
12
14
13
if ( exactMatchingPackage ) {
15
- const { code } = await spawn ( "yarn" , args . slice ( 1 ) , {
16
- cwd : exactMatchingPackage . dir ,
17
- stdio : "inherit" ,
14
+ const { exitCode } = await exec ( "yarn" , args . slice ( 1 ) , {
15
+ nodeOptions : {
16
+ cwd : exactMatchingPackage . dir ,
17
+ stdio : "inherit" ,
18
+ } ,
18
19
} ) ;
19
- throw new ExitError ( code ) ;
20
+ throw new ExitError ( exitCode ?? 1 ) ;
20
21
}
21
22
22
23
const matchingPackages = packages . filter ( ( pkg ) => {
@@ -39,10 +40,12 @@ export async function runCmd(args: string[], cwd: string) {
39
40
logger . error ( "No matching packages found" ) ;
40
41
throw new ExitError ( 1 ) ;
41
42
} else {
42
- const { code } = await spawn ( "yarn" , args . slice ( 1 ) , {
43
- cwd : matchingPackages [ 0 ] . dir ,
44
- stdio : "inherit" ,
43
+ const { exitCode } = await exec ( "yarn" , args . slice ( 1 ) , {
44
+ nodeOptions : {
45
+ cwd : matchingPackages [ 0 ] . dir ,
46
+ stdio : "inherit" ,
47
+ } ,
45
48
} ) ;
46
- throw new ExitError ( code ) ;
49
+ throw new ExitError ( exitCode ?? 1 ) ;
47
50
}
48
51
}
0 commit comments