create-prisma-php-app 1.6.32 → 1.6.33
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.
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -344,7 +344,8 @@ async function getAnswer(predefinedAnswers = {}) {
|
|
|
344
344
|
};
|
|
345
345
|
try {
|
|
346
346
|
const response = await prompts(questions, { onCancel });
|
|
347
|
-
|
|
347
|
+
console.log("🚀 ~ response:", response);
|
|
348
|
+
if (Object.keys(response).length === 0 && !predefinedAnswers.projectName) {
|
|
348
349
|
return null;
|
|
349
350
|
}
|
|
350
351
|
return {
|