Skip to content

8.1.2

Latest
Compare
Choose a tag to compare
@antonmedv antonmedv released this 27 May 16:30
· 12 commits to main since this release
73f0558

Every new zx version is better than previous one. What have we here?

Features

  • Added ProcessPromise.verbose() to enhance debugging experience.

    #820, #710
const p = $`echo foo`
p.quiet()        // enable silent mode
p.quiet(false)   // then disable
p.verbose()      // enable verbose/debug mode
p.verbose(false) // and turn it off

await p
  • Aligned ProcessPromise.isSmth() API:

    #823
const p = $`echo foo`

p.isHalted()
p.isVerbose()
p.isQuiet()
p.isNothrow()

Bug Fixes

  • fix: apply EOL ensurer to the last chunk only #825
  • fix(cli): return exit code 1 on incorrect inputs #826
  • fix: set cjs bundle as legacy main entrypoint #827

Chore