Skip to content

Commit 4b71e20

Browse files
committed
Enable camelCase expansion for kebab-case arguments
1 parent 8b1acc1 commit 4b71e20

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

registry/src/lib/parse-args.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ export function parseArgs<T = Record<string, unknown>>(
109109
'boolean-negation': !allowNegative,
110110
'halt-at-non-option': !allowPositionals,
111111
configuration: {
112-
'camel-case-expansion': false,
112+
'camel-case-expansion': true,
113113
'strip-aliased': false,
114-
'strip-dashed': true,
114+
'strip-dashed': false,
115115
...configuration,
116116
},
117117
}

0 commit comments

Comments
 (0)