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.
2 parents 4d1a9de + 91d26b2 commit 3fad262Copy full SHA for 3fad262
bin/commands/interactive.mjs
@@ -139,7 +139,10 @@ export default async function interactive() {
139
140
for (const [key, { flags }] of Object.entries(options)) {
141
const value = answers[key];
142
- if (value == null || (Array.isArray(value) && value.length === 0)) continue; // Skip empty values
+ // Skip empty values
143
+ if (value == null || (Array.isArray(value) && value.length === 0)) {
144
+ continue;
145
+ }
146
147
const flag = flags[0].split(/[\s,]+/)[0]; // Use the first flag
148
0 commit comments