sitespeed.io
Version:
sitespeed.io is an open-source tool for comprehensive web performance analysis, enabling you to test, monitor, and optimize your website’s speed using real browsers in various environments.
16 lines (15 loc) • 354 B
JavaScript
export function addOptions(yargs) {
yargs
.option('summary', {
describe: 'Show brief text summary to stdout',
default: false,
type: 'boolean',
group: 'Text'
})
.option('summaryDetail', {
describe: 'Show longer text summary to stdout',
default: false,
type: 'boolean',
group: 'Text'
});
}