Skip to content

Commit

Permalink
feat: fix some label
Browse files Browse the repository at this point in the history
  • Loading branch information
hrenaud committed Dec 1, 2023
1 parent 322b2d1 commit 964eb91
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lighthouse-plugin-ecoindex/cli/cli-flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,21 +51,21 @@ function collectCommand(yargs) {
return yargs
.example(
'lighthouse-ecoindex collect --demo',
'Generates a report for the demo URLs.',
'Generates a report with the demo file.',
)
.example(
'lighthouse-ecoindex collect --json-file ./input-file.json',
'Generates multiples reports for multiples courses.',
)
.example(
'lighthouse-ecoindex collect --url https://ecoindex.fr/ ',
'Generates multiples reports for multiples courses.',
'Generates one report for one URL.',
)
.option('demo', {
alias: 'd',
type: 'boolean',
default: false,
description: 'Use demo URLs.',
description: 'Use demo File.',
})
.option('url', {
alias: 'u',
Expand Down Expand Up @@ -97,7 +97,7 @@ function collectCommand(yargs) {
default: /** @type {const} */ (['html']),
coerce: coerceOutput,
description:
'Reporter for the results, supports multiple values. choices: "json", "html", "statement". WARN: "csv" is not avalailable with flow.',
'Reporter for the results, supports multiple values. choices: "json", "html", "statement". WARN: "csv" is not avalailable.',
})
.option('audit-category', {
alias: 'a',
Expand Down

0 comments on commit 964eb91

Please sign in to comment.