From c7e25ade813acbe14a1a6cfeecfe23fb26e6b549 Mon Sep 17 00:00:00 2001 From: Peter Hedenskog Date: Thu, 19 Sep 2024 16:09:51 +0200 Subject: [PATCH] Disable camel case configuration (#2182) --- lib/support/cli.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/support/cli.js b/lib/support/cli.js index 2214d191c..01cab6a5b 100644 --- a/lib/support/cli.js +++ b/lib/support/cli.js @@ -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] /') .require(1, 'One or more url or script files')