@zenstackhq/cli 3.4.2 → 3.4.3
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.cjs +5 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -2246,7 +2246,7 @@ var sqlite = {
|
|
|
2246
2246
|
const stmt = db.prepare(sql);
|
|
2247
2247
|
return stmt.all();
|
|
2248
2248
|
}, "all");
|
|
2249
|
-
const tablesRaw = all("SELECT name, type, sql AS definition FROM sqlite_schema WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%' ORDER BY name");
|
|
2249
|
+
const tablesRaw = all("SELECT name, type, sql AS definition FROM sqlite_schema WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%' AND name <> '_prisma_migrations' ORDER BY name");
|
|
2250
2250
|
const autoIncrementTables = /* @__PURE__ */ new Set();
|
|
2251
2251
|
for (const t of tablesRaw) {
|
|
2252
2252
|
if (t.type === "table" && t.definition) {
|
|
@@ -3379,6 +3379,10 @@ async function run6(projectPath) {
|
|
|
3379
3379
|
name: "@zenstackhq/cli@latest",
|
|
3380
3380
|
dev: true
|
|
3381
3381
|
},
|
|
3382
|
+
{
|
|
3383
|
+
name: "@zenstackhq/schema@latest",
|
|
3384
|
+
dev: false
|
|
3385
|
+
},
|
|
3382
3386
|
{
|
|
3383
3387
|
name: "@zenstackhq/orm@latest",
|
|
3384
3388
|
dev: false
|