@codebakers/cli 1.0.8 → 1.0.10
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 +15 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -198,17 +198,21 @@ Validation failed: ${validation.error || "Unknown error"}`));
|
|
|
198
198
|
}
|
|
199
199
|
console.log(chalk.bold.green("\n\u{1F389} Setup complete!\n"));
|
|
200
200
|
if (ide === "claude-code") {
|
|
201
|
-
console.log(chalk.green("\u2713 CodeBakers
|
|
202
|
-
console.log(chalk.
|
|
203
|
-
console.log(chalk.
|
|
204
|
-
console.log(chalk.
|
|
205
|
-
console.log(chalk.
|
|
206
|
-
console.log(chalk.dim("
|
|
207
|
-
console.log(chalk.dim("
|
|
208
|
-
console.log(chalk.dim("
|
|
209
|
-
console.log(chalk.
|
|
210
|
-
console.log(chalk.
|
|
211
|
-
console.log(chalk.
|
|
201
|
+
console.log(chalk.green("\u2713 CodeBakers is ready!\n"));
|
|
202
|
+
console.log(chalk.bold("You say:"));
|
|
203
|
+
console.log(chalk.cyan(' "Add a contact form"\n'));
|
|
204
|
+
console.log(chalk.bold("CodeBakers generates:"));
|
|
205
|
+
console.log(chalk.dim(" \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510"));
|
|
206
|
+
console.log(chalk.dim(" \u2502 ") + chalk.white("ContactForm component with:") + chalk.dim(" \u2502"));
|
|
207
|
+
console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Zod schema validation (name, email, message) \u2502"));
|
|
208
|
+
console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" React Hook Form with proper error display \u2502"));
|
|
209
|
+
console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Loading spinner during submission \u2502"));
|
|
210
|
+
console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Success/error toast notifications \u2502"));
|
|
211
|
+
console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" API route with rate limiting \u2502"));
|
|
212
|
+
console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Email integration (Resend) \u2502"));
|
|
213
|
+
console.log(chalk.dim(" \u2502 ") + chalk.green("\u2713") + chalk.dim(" Accessible, responsive design \u2502"));
|
|
214
|
+
console.log(chalk.dim(" \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\n"));
|
|
215
|
+
console.log(chalk.dim("Start building: just describe what you need.\n"));
|
|
212
216
|
} else if (ide) {
|
|
213
217
|
console.log(chalk.dim(`Pattern file created. Restart ${IDE_CONFIGS[ide].description} to load it.
|
|
214
218
|
`));
|