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.
handleOwnDev
1 parent 041ce0a commit a0859ddCopy full SHA for a0859dd
src/cli/lib/api.ts
@@ -440,6 +440,16 @@ async function handleOwnDev(
440
deploymentType: "dev",
441
};
442
}
443
+ default: {
444
+ const _exhaustivenessCheck: never = projectSelection;
445
+ return ctx.crash({
446
+ exitCode: 1,
447
+ errorType: "fatal",
448
+ // This should be unreachable, so don't bother with a printed message.
449
+ printedMessage: null,
450
+ errForSentry: `Unexpected project selection: ${(projectSelection as any).kind}`,
451
+ });
452
+ }
453
454
455
0 commit comments