create-start-kit-dev 0.1.5 → 0.1.7

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -223,7 +223,7 @@ async function runDatabase(state) {
223
223
  const url = await text({
224
224
  message: "Enter your DATABASE_URL:",
225
225
  placeholder: "postgresql://user:pass@host:5432/mydb",
226
- validate: (v) => {
226
+ validate: (v = "") => {
227
227
  if (!isValidPostgresUrl(v)) return "Must start with postgresql:// or postgres://";
228
228
  }
229
229
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-start-kit-dev",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "CLI for scaffolding and configuring Start Kit projects",
5
5
  "type": "module",
6
6
  "license": "MIT",