create-start-kit-dev 0.1.5 → 0.1.6
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.mjs +1 -1
- 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
|
});
|