Open 43081j opened 3 months ago
jest-changed-files can be found here:
https://github.com/jestjs/jest/tree/main/packages/jest-changed-files
it uses execa to launch git, hg and a couple other things but with very basic usage (e.g. await exec(cmd, args))
execa
await exec(cmd, args)
we can replace execa with tinyexec, a much smaller alternative
tinyexec
jest-changed-files can be found here:
https://github.com/jestjs/jest/tree/main/packages/jest-changed-files
it uses
execa
to launch git, hg and a couple other things but with very basic usage (e.g.await exec(cmd, args)
)we can replace
execa
withtinyexec
, a much smaller alternative