Skip to content

v1.0.1

Compare
Choose a tag to compare
@Alhadis Alhadis released this 11 Aug 15:18
· 45 commits to master since this release
v1.0.1

This patch addresses a bug where variadic options ignored their argument lists, dropping everything from the result except the first value:

program --files 1 2 3 --name string

Expected: { files: ["1", "2", "3"], name: "string" }
Actual:   { files: ["1"] }

Needless to say, this was a pretty stupid bug.