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 b2ecdaf commit 16ba7a2Copy full SHA for 16ba7a2
packages/cli/commands/add/index.ts
@@ -261,7 +261,7 @@ export async function runAddCommand(
261
if (existingOption !== undefined) {
262
if (typeof existingOption === 'boolean') {
263
// need to transform the boolean back to `yes` or `no`
264
- existingOption = existingOption ? 'yes' : `no`;
+ existingOption = existingOption ? 'yes' : 'no';
265
}
266
throw new Error(
267
`Conflicting '${addonId}' option: '${option}' conflicts with '${questionId}:${existingOption}'`
0 commit comments