gencow 0.1.195 → 0.1.196
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/lib/cli-project-runtime.mjs +5 -1
- package/package.json +16 -15
- package/runtime/server.mjs +789 -391
- package/server/index.js.map +4 -4
|
@@ -544,6 +544,7 @@ export function buildDrizzleKitCommand(subcmd, options = {}) {
|
|
|
544
544
|
dirnameImpl = dirname,
|
|
545
545
|
existsSyncImpl = existsSync,
|
|
546
546
|
processExecPath = process.execPath,
|
|
547
|
+
processVersions = process.versions,
|
|
547
548
|
readFileSyncImpl = readFileSync,
|
|
548
549
|
resolvePathImpl = resolve,
|
|
549
550
|
} = options;
|
|
@@ -566,7 +567,10 @@ export function buildDrizzleKitCommand(subcmd, options = {}) {
|
|
|
566
567
|
const invocation = buildDrizzleGeneratorInvocation({
|
|
567
568
|
configPath: canonicalConfigPath,
|
|
568
569
|
generatorBinPath: resolvedBin,
|
|
569
|
-
|
|
570
|
+
// drizzle-kit 1.x uses node:sqlite for migration metadata. The CLI itself
|
|
571
|
+
// may be launched by Bun through its shebang, but Bun does not implement
|
|
572
|
+
// node:sqlite, so run this Node-only tool with the Node executable on PATH.
|
|
573
|
+
processExecPath: typeof processVersions?.bun === "string" ? "node" : processExecPath,
|
|
570
574
|
subcommand: subcmd,
|
|
571
575
|
});
|
|
572
576
|
return {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gencow",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.196",
|
|
4
4
|
"description": "Gencow — AI Backend Engine",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,7 +19,16 @@
|
|
|
19
19
|
"scripts/",
|
|
20
20
|
"dashboard/"
|
|
21
21
|
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"prebuild": "pnpm --filter @gencow/migration-contract run build && pnpm --filter @gencow/server run build",
|
|
24
|
+
"build": "node scripts/bundle-core.mjs && node scripts/bundle-internal.mjs && node scripts/bundle-server.mjs",
|
|
25
|
+
"build:runtime-bundles": "node scripts/bundle-core.mjs && node scripts/bundle-server.mjs",
|
|
26
|
+
"test:coverage": "node ../../scripts/run-package-coverage.mjs",
|
|
27
|
+
"coverage:compare": "node ../../scripts/compare-package-coverage.mjs",
|
|
28
|
+
"prepublishOnly": "npm run build && node scripts/pre-publish-check.mjs"
|
|
29
|
+
},
|
|
22
30
|
"dependencies": {
|
|
31
|
+
"@gencow/migration-contract": "workspace:*",
|
|
23
32
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
24
33
|
"drizzle-kit": "1.0.0-rc.4",
|
|
25
34
|
"drizzle-orm": "1.0.0-rc.4",
|
|
@@ -27,21 +36,13 @@
|
|
|
27
36
|
"open": "^10.2.0",
|
|
28
37
|
"tar": "7.5.15",
|
|
29
38
|
"ws": "^8.21.1",
|
|
30
|
-
"zod": "^4.4.3"
|
|
31
|
-
"@gencow/migration-contract": "0.1.12"
|
|
39
|
+
"zod": "^4.4.3"
|
|
32
40
|
},
|
|
33
41
|
"devDependencies": {
|
|
42
|
+
"@gencow/client": "workspace:*",
|
|
43
|
+
"@gencow/core": "workspace:*",
|
|
44
|
+
"@gencow/react": "workspace:*",
|
|
34
45
|
"@types/node": "^25.9.5",
|
|
35
|
-
"better-auth": "^1.6.23"
|
|
36
|
-
"@gencow/client": "0.2.6",
|
|
37
|
-
"@gencow/core": "0.1.42",
|
|
38
|
-
"@gencow/react": "0.2.6"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"prebuild": "pnpm --filter @gencow/migration-contract run build && pnpm --filter @gencow/server run build",
|
|
42
|
-
"build": "node scripts/bundle-core.mjs && node scripts/bundle-internal.mjs && node scripts/bundle-server.mjs",
|
|
43
|
-
"build:runtime-bundles": "node scripts/bundle-core.mjs && node scripts/bundle-server.mjs",
|
|
44
|
-
"test:coverage": "node ../../scripts/run-package-coverage.mjs",
|
|
45
|
-
"coverage:compare": "node ../../scripts/compare-package-coverage.mjs"
|
|
46
|
+
"better-auth": "^1.6.23"
|
|
46
47
|
}
|
|
47
|
-
}
|
|
48
|
+
}
|