Skip to content

Shorthand v1.0.1

Compare
Choose a tag to compare
@danielgtaylor danielgtaylor released this 12 Mar 20:46
· 25 commits to main since this release
v1.0.1
49e4bc1

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