@popina/cli 5.0.2 → 5.0.3-20260513121905Z
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/build/index.js +20 -5
- package/build/index.js.map +1 -1
- package/package.json +4 -4
package/build/index.js
CHANGED
|
@@ -11461,7 +11461,7 @@ function date4(params) {
|
|
|
11461
11461
|
config(en_default());
|
|
11462
11462
|
|
|
11463
11463
|
// package.json
|
|
11464
|
-
var version2 = "5.0.
|
|
11464
|
+
var version2 = "5.0.3-20260513121905Z";
|
|
11465
11465
|
|
|
11466
11466
|
// src/utils/get-package-info.ts
|
|
11467
11467
|
async function getPackageInfo() {
|
|
@@ -12550,10 +12550,25 @@ var init = new Command12().name("init").alias("i").description(
|
|
|
12550
12550
|
});
|
|
12551
12551
|
s.stop(`\u{1F331} We added some data to your database! You're ready to go!`);
|
|
12552
12552
|
}
|
|
12553
|
-
const
|
|
12554
|
-
|
|
12555
|
-
|
|
12556
|
-
|
|
12553
|
+
const nextStepsLines = [`cd ${init2.name}`];
|
|
12554
|
+
if (!init2.install) {
|
|
12555
|
+
nextStepsLines.push("pnpm");
|
|
12556
|
+
}
|
|
12557
|
+
if (!db.database) {
|
|
12558
|
+
nextStepsLines.push("pnpm db:start && pnpm db:migrate && pnpm db:seed");
|
|
12559
|
+
}
|
|
12560
|
+
if (!env2.fetch) {
|
|
12561
|
+
nextStepsLines.push(
|
|
12562
|
+
"Run `popina env pull` to download local environment variables"
|
|
12563
|
+
);
|
|
12564
|
+
}
|
|
12565
|
+
nextStepsLines.push("popina list");
|
|
12566
|
+
nextStepsLines.push("popina dev");
|
|
12567
|
+
nextStepsLines.push("");
|
|
12568
|
+
nextStepsLines.push(
|
|
12569
|
+
"In popina dev, keep default selected services for a minimal setup."
|
|
12570
|
+
);
|
|
12571
|
+
const nextSteps = nextStepsLines.join("\n");
|
|
12557
12572
|
p20.note(nextSteps, `Discover Popina \u{1F50D}`);
|
|
12558
12573
|
p20.note(
|
|
12559
12574
|
`Check out Linear : https://linear.app/pragmapos/team/WEB
|