Shorthand v1.0.1
What's Changed
- fix: GetInput args now modify stdin rather than overwriting by @danielgtaylor in #3
If the previous buggy behavior is desired, you can unset the stdin input value first, for example given the stdin input:
{
"foo": [1, 2, 3]
}
Then the shorthand passed on the commandline: foo: null, foo[]: 4, foo[]: 5
the result would be:
{
"foo": [4, 5]
}
Full Changelog: v1.0.0...v1.0.1