@popina/cli 5.0.1 → 5.0.2-20260413065909Z
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 +14 -15
- package/build/index.js.map +1 -1
- package/package.json +3 -3
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.2-20260413065909Z";
|
|
11465
11465
|
|
|
11466
11466
|
// src/utils/get-package-info.ts
|
|
11467
11467
|
async function getPackageInfo() {
|
|
@@ -11568,7 +11568,7 @@ async function checkPnpm() {
|
|
|
11568
11568
|
);
|
|
11569
11569
|
process.exit(0);
|
|
11570
11570
|
});
|
|
11571
|
-
const requiredVersion = "10.
|
|
11571
|
+
const requiredVersion = "10.33.0";
|
|
11572
11572
|
const currentVersion = pnpmVersion.trim();
|
|
11573
11573
|
if (!compareVersions(currentVersion, requiredVersion)) {
|
|
11574
11574
|
p13.log.warn(
|
|
@@ -11678,7 +11678,7 @@ var SERVICE_REGISTRY = [
|
|
|
11678
11678
|
name: "API",
|
|
11679
11679
|
packageName: "@pragma/api",
|
|
11680
11680
|
url: "http://localhost:4000",
|
|
11681
|
-
description: "
|
|
11681
|
+
description: "Popina API for third parties",
|
|
11682
11682
|
path: "apps/api",
|
|
11683
11683
|
group: "api"
|
|
11684
11684
|
},
|
|
@@ -11767,7 +11767,7 @@ var SERVICE_REGISTRY = [
|
|
|
11767
11767
|
name: "Admin",
|
|
11768
11768
|
packageName: "@pragma/admin",
|
|
11769
11769
|
url: "http://localhost:3000",
|
|
11770
|
-
description: "Manage, monitor and configure
|
|
11770
|
+
description: "Manage, monitor and configure Popina APIs",
|
|
11771
11771
|
path: "apps/admin",
|
|
11772
11772
|
group: "app"
|
|
11773
11773
|
},
|
|
@@ -11824,16 +11824,8 @@ var SERVICE_REGISTRY = [
|
|
|
11824
11824
|
name: "Public Docs",
|
|
11825
11825
|
packageName: "@pragma/public-docs",
|
|
11826
11826
|
url: "http://localhost:3001",
|
|
11827
|
-
description: "Public documentation for
|
|
11828
|
-
path: "apps/docs",
|
|
11829
|
-
group: "docs"
|
|
11830
|
-
},
|
|
11831
|
-
{
|
|
11832
|
-
name: "Internal Docs",
|
|
11833
|
-
packageName: "@pragma/internal-docs",
|
|
11834
|
-
url: "http://localhost:3006",
|
|
11835
|
-
description: "Internal documentation for Pragma API",
|
|
11836
|
-
path: "apps/admin",
|
|
11827
|
+
description: "Public documentation for Popina APIs",
|
|
11828
|
+
path: "apps/public-docs",
|
|
11837
11829
|
group: "docs"
|
|
11838
11830
|
},
|
|
11839
11831
|
{
|
|
@@ -11848,7 +11840,7 @@ var SERVICE_REGISTRY = [
|
|
|
11848
11840
|
name: "Knowledge Documentation",
|
|
11849
11841
|
packageName: "@pragma/knowledge",
|
|
11850
11842
|
url: "http://localhost:3009",
|
|
11851
|
-
description: "
|
|
11843
|
+
description: "Internal Popina engineering documentation",
|
|
11852
11844
|
path: "apps/knowledge",
|
|
11853
11845
|
group: "docs"
|
|
11854
11846
|
},
|
|
@@ -11909,6 +11901,9 @@ function getAppServices() {
|
|
|
11909
11901
|
function getDocServices() {
|
|
11910
11902
|
return getServicesByGroup("docs");
|
|
11911
11903
|
}
|
|
11904
|
+
function getOtherServices() {
|
|
11905
|
+
return getServicesByGroup("other");
|
|
11906
|
+
}
|
|
11912
11907
|
function getDatabaseTools() {
|
|
11913
11908
|
return DATABASE_TOOLS;
|
|
11914
11909
|
}
|
|
@@ -12603,6 +12598,7 @@ var cmdList = new Command13().name("list").description(
|
|
|
12603
12598
|
const apiList = getAPIServices();
|
|
12604
12599
|
const appsList = getAppServices();
|
|
12605
12600
|
const docList = getDocServices();
|
|
12601
|
+
const otherList = getOtherServices();
|
|
12606
12602
|
const databaseList = getDatabaseTools();
|
|
12607
12603
|
p22.intro(`${color7.bgCyan(color7.black(` Popina CLI - list `))}`);
|
|
12608
12604
|
p22.log.message(`
|
|
@@ -12615,6 +12611,9 @@ ${color7.bold("Web Applications:")}`);
|
|
|
12615
12611
|
${color7.bold("Documentations:")}`);
|
|
12616
12612
|
printAppsList(docList);
|
|
12617
12613
|
p22.log.message(`
|
|
12614
|
+
${color7.bold("Background services:")}`);
|
|
12615
|
+
printAppsList(otherList);
|
|
12616
|
+
p22.log.message(`
|
|
12618
12617
|
${color7.bold("Database tools:")}`);
|
|
12619
12618
|
printAppsList(databaseList);
|
|
12620
12619
|
p22.outro(
|