@rebasepro/cli 0.9.1-canary.7dddf96 → 0.9.1-canary.a57c262

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.7dddf96",
3
+ "version": "0.9.1-canary.a57c262",
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.7dddf96",
35
- "@rebasepro/client": "0.9.1-canary.7dddf96",
36
- "@rebasepro/codegen": "0.9.1-canary.7dddf96",
37
- "@rebasepro/server": "0.9.1-canary.7dddf96",
38
- "@rebasepro/server-postgres": "0.9.1-canary.7dddf96",
39
- "@rebasepro/types": "0.9.1-canary.7dddf96"
34
+ "@rebasepro/client": "0.9.1-canary.a57c262",
35
+ "@rebasepro/codegen": "0.9.1-canary.a57c262",
36
+ "@rebasepro/agent-skills": "0.9.1-canary.a57c262",
37
+ "@rebasepro/server-postgres": "0.9.1-canary.a57c262",
38
+ "@rebasepro/types": "0.9.1-canary.a57c262",
39
+ "@rebasepro/server": "0.9.1-canary.a57c262"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/node": "^25.9.3",
@@ -7,11 +7,14 @@
7
7
  # Database connection string (required)
8
8
  # You can use PostgreSQL (postgresql://) or MongoDB (mongodb:// or mongodb+srv://).
9
9
  # The backend will automatically detect the database type.
10
- DATABASE_URL=postgresql://rebase:changeme@localhost:5432/rebase?options=-c%20search_path=public
10
+ # sslmode=disable matches the local docker-compose database, which has no TLS;
11
+ # schema tooling (atlas) would otherwise default to requiring SSL. Remove it
12
+ # when pointing at a managed/cloud database.
13
+ DATABASE_URL=postgresql://rebase:changeme@localhost:5432/rebase?options=-c%20search_path=public&sslmode=disable
11
14
  # DATABASE_URL=mongodb://localhost:27017/rebase
12
15
  #
13
- # Seeing "SSL is not enabled on the server"? Nothing here asks for SSL, so
14
- # something in your environment does — almost always a global PGSSLMODE=require
16
+ # Seeing "SSL is not enabled on the server"? Something in your environment
17
+ # asks for SSL — almost always a global PGSSLMODE=require
15
18
  # (set once for a cloud database, then inherited by every local project), or an
16
19
  # sslmode=require copied in with a connection string.
17
20
  #
@@ -20,7 +20,8 @@
20
20
  "pg": "^8.11.3",
21
21
  "ws": "^8.16.0",
22
22
  "dotenv": "^16.0.0",
23
- "zod": "^4.4.3"
23
+ "zod": "^4.4.3",
24
+ "ts-morph": "28.0.0"
24
25
  },
25
26
  "devDependencies": {
26
27
  "@types/pg": "^8.6.5",
@@ -0,0 +1,31 @@
1
+ # Dependencies
2
+ node_modules/
3
+
4
+ # Build output
5
+ dist/
6
+ build/
7
+
8
+ # Environment (secrets — .env.example is tracked)
9
+ .env
10
+ .env.local
11
+ !.env.example
12
+
13
+ # IDE
14
+ .idea/
15
+ .vscode/
16
+ *.swp
17
+ *.swo
18
+
19
+ # OS
20
+ .DS_Store
21
+ Thumbs.db
22
+
23
+ # Drizzle
24
+ drizzle/meta/
25
+
26
+ # Uploads
27
+ uploads/
28
+
29
+ # Rebase dev
30
+ .rebase-dev-url
31
+ .rebase-dev-port
@@ -0,0 +1,10 @@
1
+ # Ensure pnpm links local workspace packages when version specifiers
2
+ # like "*" are used (instead of the pnpm-specific "workspace:*" protocol).
3
+ # This makes the project compatible with both pnpm and npm workspaces.
4
+ link-workspace-packages=true
5
+
6
+ # Disable automatic dependency check before running scripts to prevent background install failures in read-only environments
7
+ verify-deps-before-run=false
8
+
9
+ # Prevent pnpm from prompting for confirmation when purging modules in non-TTY environments (e.g. Docker, CI)
10
+ confirm-modules-purge=false