Skip to content

Commit

Permalink
Disable camel case configuration (#2182)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore authored Sep 19, 2024
1 parent 35c71f1 commit c7e25ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/support/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@ function validateInput(argv) {
export function parseCommandLine() {
let yargsInstance = yargs(hideBin(process.argv));
let validated = yargsInstance
.parserConfiguration({ 'deep-merge-config': true })
.parserConfiguration({
'camel-case-expansion': false,
'deep-merge-config': true
})
.env('BROWSERTIME')
.usage('$0 [options] <url>/<scriptFile>')
.require(1, 'One or more url or script files')
Expand Down

0 comments on commit c7e25ad

Please sign in to comment.