@cosmicdrift/kumiko-dev-server 0.156.2 → 0.156.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-dev-server",
3
- "version": "0.156.2",
3
+ "version": "0.156.3",
4
4
  "description": "Dev-tooling for Kumiko apps: local dev-server bootstrap (runDevApp), scaffolding, codegen. Not shipped into production node_modules — see @cosmicdrift/kumiko-server-runtime for the prod boot path.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -54,9 +54,9 @@
54
54
  "kumiko-schema-check": "./bin/kumiko-schema-check.ts"
55
55
  },
56
56
  "dependencies": {
57
- "@cosmicdrift/kumiko-bundled-features": "0.156.2",
58
- "@cosmicdrift/kumiko-framework": "0.156.2",
59
- "@cosmicdrift/kumiko-server-runtime": "0.156.2",
57
+ "@cosmicdrift/kumiko-bundled-features": "0.156.3",
58
+ "@cosmicdrift/kumiko-framework": "0.156.3",
59
+ "@cosmicdrift/kumiko-server-runtime": "0.156.3",
60
60
  "ts-morph": "^28.0.0"
61
61
  },
62
62
  "publishConfig": {
@@ -55,6 +55,12 @@ describe("buildServerBundle (multi-entry + splitting)", () => {
55
55
  expect(pkg.scripts.start).toBe("bun run server.js");
56
56
  expect(Object.keys(pkg.dependencies)).not.toContain("drizzle-kit");
57
57
  expect(Object.keys(pkg.dependencies)).not.toContain("drizzle-orm");
58
+ // Positive counterpart to the negative checks above — a runtime
59
+ // external accidentally dropped from RUNTIME_EXTERNALS (into
60
+ // BUILD_ONLY_EXTERNALS instead) would slip through silently. This
61
+ // is the exact regression class behind the money-horse prod crash
62
+ // ("Cannot find package 'meilisearch'").
63
+ expect(Object.keys(pkg.dependencies)).toContain("meilisearch");
58
64
 
59
65
  expect(result.totalBytes).toBeGreaterThan(0);
60
66
  } finally {