We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 781b5f3 commit 1549390Copy full SHA for 1549390
packages/wrangler/src/index.ts
@@ -703,6 +703,8 @@ export async function main(argv: string[]): Promise<void> {
703
command = `wrangler ${args._.join(" ")}`;
704
metricsArgs = args;
705
addBreadcrumb(command);
706
+ // NB despite 'applyBeforeValidation = true', this runs *after* yargs 'validates' options,
707
+ // e.g. if a required arg is missing, yargs will error out before we send any events :/
708
void dispatcher?.sendNewEvent("wrangler command started", {
709
command,
710
args,
0 commit comments