Skip to content

Commit 3c3198a

Browse files
authored
Replace spawndamnit with tinyexec (#224)
1 parent 47b1dea commit 3c3198a

File tree

9 files changed

+45
-38
lines changed

9 files changed

+45
-38
lines changed

.changeset/spicy-hornets-beam.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@manypkg/cli": minor
3+
---
4+
5+
Replace `spawndamnit` with `tinyexec` for fewer dependencies

packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"picocolors": "^1.1.0",
2323
"sembear": "^0.5.0",
2424
"semver": "^6.3.0",
25-
"spawndamnit": "^2.0.0",
25+
"tinyexec": "^0.3.1",
2626
"validate-npm-package-name": "^5.0.1"
2727
},
2828
"devDependencies": {

packages/cli/src/index.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { writePackage, install } from "./utils";
88
import { runCmd } from "./run";
99
import { upgradeDependency } from "./upgrade";
1010
import { npmTagAll } from "./npm-tag";
11-
import spawn from "spawndamnit";
11+
import { exec } from "tinyexec";
1212
import pLimit from "p-limit";
1313

1414
type RootPackage = Package & {
@@ -93,11 +93,13 @@ async function execCmd(args: string[]) {
9393
await Promise.all(
9494
packages.map((pkg) => {
9595
return execLimit(async () => {
96-
let { code } = await spawn(args[0], args.slice(1), {
97-
cwd: pkg.dir,
98-
stdio: "inherit",
96+
const { exitCode } = await exec(args[0], args.slice(1), {
97+
nodeOptions: {
98+
cwd: pkg.dir,
99+
stdio: "inherit",
100+
},
99101
});
100-
highestExitCode = Math.max(code, highestExitCode);
102+
highestExitCode = Math.max(exitCode ?? 1, highestExitCode);
101103
});
102104
})
103105
);

packages/cli/src/npm-tag.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { getPackages } from "@manypkg/get-packages";
22
import type { PackageJSON } from "@changesets/types";
3-
import spawn from "spawndamnit";
3+
import { exec } from "tinyexec";
44
import pLimit from "p-limit";
55

66
let npmLimit = pLimit(40);
@@ -30,7 +30,7 @@ async function tagApackage(
3030
flags.push("--otp", otpCode);
3131
}
3232

33-
return await spawn(
33+
return await exec(
3434
"npm",
3535
[
3636
"dist-tag",
@@ -40,8 +40,10 @@ async function tagApackage(
4040
...flags,
4141
],
4242
{
43-
stdio: "inherit",
44-
env: Object.assign({}, process.env, envOverride),
43+
nodeOptions: {
44+
stdio: "inherit",
45+
env: envOverride,
46+
},
4547
}
4648
);
4749
}

packages/cli/src/run.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { runCmd } from "./run";
22
import fixturez from "fixturez";
3-
import spawn from "spawndamnit";
3+
import { exec } from "tinyexec";
44
import stripAnsi from "strip-ansi";
55

66
const f = fixturez(__dirname);
@@ -22,16 +22,16 @@ describe("Run command", () => {
2222
// @ts-ignore
2323
])(
2424
'should execute "%s %s" and exit with %i',
25-
async (arg0, arg1, exitCode) => {
26-
const { stdout, stderr, code } = await spawn(
25+
async (arg0, arg1, expectedExitCode) => {
26+
const { exitCode, stdout, stderr } = await exec(
2727
require.resolve("../bin"),
2828
// @ts-ignore
2929
["run", arg0, arg1],
3030
{
31-
cwd: f.find("basic-with-scripts"),
31+
nodeOptions: { cwd: f.find("basic-with-scripts") },
3232
}
3333
);
34-
expect(code).toBe(exitCode);
34+
expect(exitCode).toBe(expectedExitCode);
3535
expect(stripAnsi(stdout.toString())).toMatchSnapshot("stdout");
3636
expect(stripAnsi(stderr.toString())).toMatchSnapshot("stderr");
3737
}

packages/cli/src/run.ts

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { getPackages } from "@manypkg/get-packages";
2-
import path from "path";
3-
import spawn from "spawndamnit";
2+
import { exec } from "tinyexec";
43
import * as logger from "./logger";
54
import { ExitError } from "./errors";
65

@@ -12,11 +11,13 @@ export async function runCmd(args: string[], cwd: string) {
1211
});
1312

1413
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+
},
1819
});
19-
throw new ExitError(code);
20+
throw new ExitError(exitCode ?? 1);
2021
}
2122

2223
const matchingPackages = packages.filter((pkg) => {
@@ -39,10 +40,12 @@ export async function runCmd(args: string[], cwd: string) {
3940
logger.error("No matching packages found");
4041
throw new ExitError(1);
4142
} 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+
},
4548
});
46-
throw new ExitError(code);
49+
throw new ExitError(exitCode ?? 1);
4750
}
4851
}

packages/cli/src/utils.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import fs from "node:fs/promises";
22
import { Package, Tool } from "@manypkg/get-packages";
33
import path from "path";
4-
import spawn from "spawndamnit";
4+
import { exec } from "tinyexec";
55
import detectIndent from "detect-indent";
66

77
export async function writePackage(pkg: Package) {
@@ -24,13 +24,13 @@ export async function install(toolType: string, cwd: string) {
2424
yarn: "yarn",
2525
};
2626

27-
await spawn(
27+
await exec(
2828
cliRunners[toolType],
2929
toolType === "pnpm"
3030
? ["install"]
3131
: toolType === "lerna"
3232
? ["bootstrap", "--since", "HEAD"]
3333
: [],
34-
{ cwd, stdio: "inherit" }
34+
{ nodeOptions: { cwd, stdio: "inherit" } }
3535
);
3636
}

types/spawndamnit.d.ts

-10
This file was deleted.

yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -14199,6 +14199,11 @@ timsort@^0.3.0:
1419914199
resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
1420014200
integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
1420114201

14202+
tinyexec@^0.3.1:
14203+
version "0.3.1"
14204+
resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.1.tgz#0ab0daf93b43e2c211212396bdb836b468c97c98"
14205+
integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==
14206+
1420214207
title-case@^2.1.0:
1420314208
version "2.1.1"
1420414209
resolved "https://registry.yarnpkg.com/title-case/-/title-case-2.1.1.tgz#3e127216da58d2bc5becf137ab91dae3a7cd8faa"

0 commit comments

Comments
 (0)