gencow 0.1.198 → 0.1.199

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.
@@ -348,8 +348,11 @@ export function createDeployPackageRuntime({
348
348
  return true;
349
349
  }
350
350
  errorImpl(
351
- "BACKEND_CAPABILITY_EMPTY: this backend registers no query, mutation, or procedure; deployment stopped before upload.",
351
+ "Backend deploy stopped before upload because this project registers no query, mutation, or procedure.",
352
352
  );
353
+ infoImpl("Code: BACKEND_CAPABILITY_EMPTY");
354
+ infoImpl("Stage: candidate");
355
+ infoImpl("Next action: EDIT_AND_CHECK");
353
356
  infoImpl("Add a backend procedure, or use gencow static <build-directory> for a frontend-only app.");
354
357
  exitImpl(1);
355
358
  return false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gencow",
3
- "version": "0.1.198",
3
+ "version": "0.1.199",
4
4
  "description": "Gencow — AI Backend Engine",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,8 +34,8 @@
34
34
  "@types/node": "^25.9.5",
35
35
  "better-auth": "^1.6.23",
36
36
  "@gencow/client": "0.2.6",
37
- "@gencow/react": "0.2.6",
38
- "@gencow/core": "0.1.42"
37
+ "@gencow/core": "0.1.42",
38
+ "@gencow/react": "0.2.6"
39
39
  },
40
40
  "scripts": {
41
41
  "prebuild": "pnpm --filter @gencow/migration-contract run build && pnpm --filter @gencow/server run build",