We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f061efc commit 9d2a125Copy full SHA for 9d2a125
src/lib/options/args-collector.ts
@@ -105,7 +105,9 @@ export const collectArgumentOptions = async (): Promise<
105
generateTypeObject = toBoolean(generateTypeObject, DEFAULT_OPTIONS.generateTypeObject);
106
compileSources = toBoolean(compileSources, DEFAULT_OPTIONS.compileSources);
107
108
- delimiter = convertionType === ConvertionType.OBJECT ? Delimiter.CAMEL : Delimiter.SNAKE;
+ if (!delimiter) {
109
+ delimiter = convertionType === ConvertionType.OBJECT ? Delimiter.CAMEL : Delimiter.SNAKE;
110
+ }
111
112
// Because of commander adding default value to params
113
// See: https://stackoverflow.com/questions/30238654/commander-js-collect-multiple-options-always-include-default
0 commit comments