Small fixes
A selection of 80 fixes from 174 pull requests.
17.Negative flag values
The wizard turned -2 into a separate option token. Generating --offset=-2 instead of --offset -2 delivers the value to the handler.
112345return values.flatMap((value) => [commandLineArg(`--${single.name}`), value])return values.flatMap((value) => value.value.startsWith("-") && value.value.length > 1 ? [commandLineArg(`--${single.name}=${value.value}`, `--${single.name}=${value.displayValue}`)] : [commandLineArg(`--${single.name}`), value])