(args: string[], index: number, parsed: MutablePrepareOptions)
| 101 | } |
| 102 | |
| 103 | function parseArgument(args: string[], index: number, parsed: MutablePrepareOptions) { |
| 104 | return parseVersionOptionArgument(args, index, parsed, { |
| 105 | inlineValueOptions: INLINE_VALUE_OPTIONS, |
| 106 | valueOptions: VALUE_OPTIONS, |
| 107 | booleanOptions: BOOLEAN_OPTIONS, |
| 108 | printUsage, |
| 109 | fail, |
| 110 | }); |
| 111 | } |
| 112 | |
| 113 | function finalizeOptions(parsed: MutablePrepareOptions): PrepareOptions { |
| 114 | if (!parsed.version) { |
no test coverage detected