@rebasepro/cli 0.9.1-canary.74adfbe → 0.9.1-canary.78ab3dc

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": "@rebasepro/cli",
3
- "version": "0.9.1-canary.74adfbe",
3
+ "version": "0.9.1-canary.78ab3dc",
4
4
  "description": "Developer tools for Rebase projects",
5
5
  "main": "./dist/index.es.js",
6
6
  "module": "./dist/index.es.js",
@@ -31,12 +31,12 @@
31
31
  "execa": "^9.6.1",
32
32
  "inquirer": "14.0.2",
33
33
  "jiti": "^2.7.0",
34
- "@rebasepro/agent-skills": "0.9.1-canary.74adfbe",
35
- "@rebasepro/codegen": "0.9.1-canary.74adfbe",
36
- "@rebasepro/server": "0.9.1-canary.74adfbe",
37
- "@rebasepro/client": "0.9.1-canary.74adfbe",
38
- "@rebasepro/server-postgres": "0.9.1-canary.74adfbe",
39
- "@rebasepro/types": "0.9.1-canary.74adfbe"
34
+ "@rebasepro/agent-skills": "0.9.1-canary.78ab3dc",
35
+ "@rebasepro/client": "0.9.1-canary.78ab3dc",
36
+ "@rebasepro/codegen": "0.9.1-canary.78ab3dc",
37
+ "@rebasepro/server-postgres": "0.9.1-canary.78ab3dc",
38
+ "@rebasepro/server": "0.9.1-canary.78ab3dc",
39
+ "@rebasepro/types": "0.9.1-canary.78ab3dc"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.9.3",
@@ -66,6 +66,7 @@
66
66
  "test": "vitest run",
67
67
  "test:e2e": "vitest run --config vitest.e2e.config.ts",
68
68
  "build": "vite build && tsc --emitDeclarationOnly -p tsconfig.json && node ../../scripts/assert-build-output.mjs",
69
- "clean": "rm -rf dist && find ./src -name '*.js' -type f | xargs rm -f"
69
+ "clean": "rm -rf dist && find ./src -name '*.js' -type f | xargs rm -f",
70
+ "typecheck:test": "tsc --noEmit -p tsconfig.test.json"
70
71
  }
71
72
  }
@@ -60,6 +60,13 @@ services:
60
60
  ADMIN_CONNECTION_STRING: postgresql://rebase:${DATABASE_PASSWORD:-changeme}@db:5432/rebase?options=-c%20search_path=public
61
61
  NODE_ENV: production
62
62
  PORT: "3001"
63
+ # The server refuses to boot with local storage under NODE_ENV=production,
64
+ # because the container filesystem is destroyed on the next restart and
65
+ # uploads go with it. That does not apply here: the `uploads` volume below
66
+ # is a durable named volume mounted at the storage path, which is exactly
67
+ # the case the check tells you to acknowledge with this flag. Switch to
68
+ # STORAGE_TYPE=s3 or gcs and drop this line if you move storage off-box.
69
+ FORCE_LOCAL_STORAGE: "true"
63
70
  depends_on:
64
71
  db:
65
72
  condition: service_healthy