Releases: google/zx
Releases · google/zx
7.1.1
7.1.0
Autoinstall
This release introduces a new flag --install
which will parse and install all required or imported packages automatically.
import sh from 'tinysh'
sh.say('Hello, world!')
And running zx --install script.mjs
will trigger installation of tinysh package! It even possible to specify a needed version in comment with @
symbol:
import sh from 'tinysh' // @^1.0.0
PowerShell
Another big change is for Windows. Now, the default shell on Windows is powershell.exe
.
This should fix a lot of issues with "dollar" signs.
Fixes
- Minimist now correctly parses argv when using zx cli.
7.0.8
What's Changed
- fix: avoid redundant
$.verbose
reassignment on CLI init by @antongolub in #475 - fix: let $.spawn be configurable by @antongolub in #486
Full Changelog: 7.0.7...7.0.8