es-tooling / ecosystem-cleanup

A place to keep track of ongoing efforts to clean up the JS ecosystem
361 stars 2 forks source link

Migrate jest-changed-files to tinyexec #82

Open 43081j opened 3 weeks ago

43081j commented 3 weeks 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))

we can replace execa with tinyexec, a much smaller alternative