betterstart-cli 0.0.81 → 0.0.82

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/cli.js CHANGED
@@ -22588,7 +22588,7 @@ import * as p13 from "@clack/prompts";
22588
22588
  async function promptProject(defaultName) {
22589
22589
  const projectName = await p13.text({
22590
22590
  message: "What is your project named?",
22591
- placeholder: defaultName ?? "(Leave blank to skip directory creation)",
22591
+ placeholder: defaultName ?? "(Press Enter to use default)",
22592
22592
  defaultValue: defaultName ?? ".",
22593
22593
  validate: (value) => {
22594
22594
  if (!value?.trim()) return void 0;