@lssm/app.cli-database 0.0.0-canary-20251222120211 → 0.0.0-canary-20251223010757
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.
|
@@ -46,7 +46,7 @@ async function runSchemaCompose(argv) {
|
|
|
46
46
|
console.log(`📋 Enums discovered: ${Array.from(allEnums).join(", ")}`);
|
|
47
47
|
console.log("");
|
|
48
48
|
}
|
|
49
|
-
const { composeModuleSchemas } = await import("
|
|
49
|
+
const { composeModuleSchemas } = await import("@lssm/lib.schema");
|
|
50
50
|
const prismaSchema = composeModuleSchemas(modules, {
|
|
51
51
|
provider: config.provider ?? "postgresql",
|
|
52
52
|
clientOutput: config.clientOutput,
|
|
@@ -28,7 +28,7 @@ async function runSchemaGenerate(argv) {
|
|
|
28
28
|
console.log(` - ${m.moduleId} (${m.entities.length} entities)`);
|
|
29
29
|
});
|
|
30
30
|
console.log("");
|
|
31
|
-
const { composeModuleSchemas } = await import("
|
|
31
|
+
const { composeModuleSchemas } = await import("@lssm/lib.schema");
|
|
32
32
|
const prismaSchema = composeModuleSchemas(modules, {
|
|
33
33
|
provider: config.provider ?? "postgresql",
|
|
34
34
|
clientOutput: config.clientOutput,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/app.cli-database",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251223010757",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"database": "dist/cli.js"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"schema:compose": "database schema:compose"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
28
|
+
"@lssm/lib.schema": "0.0.0-canary-20251223010757",
|
|
29
29
|
"@prisma/adapter-pg": "^7.2.0",
|
|
30
30
|
"@prisma/client": "^7.2.0",
|
|
31
31
|
"prisma": "^7.2.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"execa": "^9.6.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
37
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
36
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251223010757",
|
|
37
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251223010757",
|
|
38
38
|
"@types/minimist": "^1.2.5",
|
|
39
39
|
"tsdown": "^0.18.1"
|
|
40
40
|
},
|