Disable camel case for CLI, fixes axe https://github.com/sitespeedio/sitespeed.io/issues/4250 (#4251)
This commit is contained in:
parent
94a19a34dd
commit
3ae5dcae43
|
|
@ -212,7 +212,10 @@ function validateInput(argv) {
|
|||
export async function parseCommandLine() {
|
||||
let yargsInstance = yargs(hideBin(process.argv));
|
||||
let parsed = yargsInstance
|
||||
.parserConfiguration({ 'deep-merge-config': true })
|
||||
.parserConfiguration({
|
||||
'camel-case-expansion': false,
|
||||
'deep-merge-config': true
|
||||
})
|
||||
.env('SITESPEED_IO')
|
||||
.usage('$0 [options] <url>/<file>')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue