betterstart-cli 0.0.61 → 0.0.63
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 +4 -4
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -26079,7 +26079,7 @@ async function runInitCommand(name, options) {
|
|
|
26079
26079
|
);
|
|
26080
26080
|
} else {
|
|
26081
26081
|
driverReady = hasDrizzleKitPostgresDriverDependency(cwd);
|
|
26082
|
-
s.stop(
|
|
26082
|
+
s.stop(`Drizzle Kit Postgres driver dependency installed`);
|
|
26083
26083
|
}
|
|
26084
26084
|
}
|
|
26085
26085
|
if (driverReady) {
|
|
@@ -26239,14 +26239,14 @@ async function runInitCommand(name, options) {
|
|
|
26239
26239
|
}
|
|
26240
26240
|
}
|
|
26241
26241
|
if (seedResult.success) {
|
|
26242
|
-
const seedSuccessMessage = seedOverwriteMode === "admin" ?
|
|
26242
|
+
const seedSuccessMessage = seedOverwriteMode === "admin" ? `Admin user replaced` : `Admin user ${pc6.green(seedEmail)} successfully created`;
|
|
26243
26243
|
s.stop(seedSuccessMessage);
|
|
26244
26244
|
rowsBelowCredentialPrompts += clackLogRows(seedSuccessMessage);
|
|
26245
26245
|
eraseRowsAbove(credentialPromptRows, rowsBelowCredentialPrompts);
|
|
26246
26246
|
seedSuccess = true;
|
|
26247
26247
|
adminAccountReady = true;
|
|
26248
26248
|
} else if (seedResult.error) {
|
|
26249
|
-
s.stop(
|
|
26249
|
+
s.stop(`Failed to create admin user`);
|
|
26250
26250
|
p18.note(
|
|
26251
26251
|
`${pc6.red(seedResult.error)}
|
|
26252
26252
|
|
|
@@ -26269,7 +26269,7 @@ Run manually: ${pc6.cyan(betterstartExecCommand(pm, "seed"))}`,
|
|
|
26269
26269
|
cwd,
|
|
26270
26270
|
stdio: "pipe"
|
|
26271
26271
|
});
|
|
26272
|
-
s.
|
|
26272
|
+
s.clear();
|
|
26273
26273
|
} catch {
|
|
26274
26274
|
s.stop("Git commit skipped");
|
|
26275
26275
|
}
|