@capawesome/cli 3.7.0-dev.9668558.1764835928 → 3.7.0-dev.b8bd61c.1764836024
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -337,7 +337,7 @@ export default defineCommand({
|
|
|
337
337
|
const confirmed = await prompt(`Are you sure you want to create a bundle from path "${relativePath}" for app "${appName}" (${appId})?`, {
|
|
338
338
|
type: 'confirm',
|
|
339
339
|
});
|
|
340
|
-
if (confirmed) {
|
|
340
|
+
if (!confirmed) {
|
|
341
341
|
consola.info('Bundle creation cancelled.');
|
|
342
342
|
process.exit(0);
|
|
343
343
|
}
|
package/package.json
CHANGED