UNPKG

calibre

Version:

Performance monitoring with Synthetic testing, Chrome UX Report, and Real User Metrics

17 lines (13 loc) 482 B
import * as Summary from './crux/summary.js' import * as History from './crux/history.js' import * as Urls from './crux/urls.js' import * as Url from './crux/url.js' const commands = [Summary, History, Urls, Url] const command = 'crux <command>' const desc = 'Chrome UX Report (CrUX) — real-world performance data from Chrome users.' const builder = yargs => { return yargs.commands(commands) } const handler = () => {} export { command, desc, builder, handler, commands }