Skip to content

4.0.0

Compare
Choose a tag to compare
@antonmedv antonmedv released this 27 Aug 22:02
· 463 commits to main since this release

In this release:

  • Added kill() method 4915ff3
  • Added path package ce69a84
  • Added cjs support (#203)
  • Changed: register globals only in zx binary 33aaae4

New examples:

let {stdin, stdout} = $`npm init`

for await (let chunk of stdout) {
  if (chunk.includes('package name:')) stdin.write('test\n')
}