@rebasepro/cli 0.9.1-canary.1d2d8b5 → 0.9.1-canary.58368ce
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.
|
|
3
|
+
"version": "0.9.1-canary.58368ce",
|
|
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.
|
|
35
|
-
"@rebasepro/client": "0.9.1-canary.
|
|
36
|
-
"@rebasepro/
|
|
37
|
-
"@rebasepro/
|
|
38
|
-
"@rebasepro/
|
|
39
|
-
"@rebasepro/server
|
|
34
|
+
"@rebasepro/agent-skills": "0.9.1-canary.58368ce",
|
|
35
|
+
"@rebasepro/client": "0.9.1-canary.58368ce",
|
|
36
|
+
"@rebasepro/server-postgres": "0.9.1-canary.58368ce",
|
|
37
|
+
"@rebasepro/types": "0.9.1-canary.58368ce",
|
|
38
|
+
"@rebasepro/codegen": "0.9.1-canary.58368ce",
|
|
39
|
+
"@rebasepro/server": "0.9.1-canary.58368ce"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^25.9.3",
|
|
@@ -10,8 +10,15 @@
|
|
|
10
10
|
DATABASE_URL=postgresql://rebase:changeme@localhost:5432/rebase?options=-c%20search_path=public
|
|
11
11
|
# DATABASE_URL=mongodb://localhost:27017/rebase
|
|
12
12
|
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
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
|
|
15
|
+
# (set once for a cloud database, then inherited by every local project), or an
|
|
16
|
+
# sslmode=require copied in with a connection string.
|
|
17
|
+
#
|
|
18
|
+
# Prefer unsetting PGSSLMODE for this project. Rebase deliberately does not
|
|
19
|
+
# downgrade SSL for you when you have asked for it, not even on localhost:
|
|
20
|
+
# quietly ignoring a security setting is worse than a clear failure. To opt out
|
|
21
|
+
# explicitly for a local database, say so:
|
|
15
22
|
# DATABASE_URL=postgresql://rebase:changeme@localhost:5432/rebase?options=-c%20search_path=public&sslmode=disable
|
|
16
23
|
|
|
17
24
|
# Separate admin connection string for migrations and schema operations (optional)
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"dev": "tsx watch --
|
|
8
|
+
"dev": "tsx watch --include=\"../config/**/*\" --include=\"./functions/**/*\" src/index.ts",
|
|
9
9
|
"build": "rebase schema generate --collections ../config/collections && tsc",
|
|
10
10
|
"start": "node dist/backend/src/index.js"
|
|
11
11
|
},
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@rebasepro/server-postgres": "workspace:*",
|
|
16
16
|
"@rebasepro/types": "workspace:*",
|
|
17
17
|
"drizzle-orm": "^0.45.2",
|
|
18
|
-
"hono": "^4.12.
|
|
18
|
+
"hono": "^4.12.25",
|
|
19
19
|
"@hono/node-server": "^1.19.12",
|
|
20
20
|
"pg": "^8.11.3",
|
|
21
21
|
"ws": "^8.16.0",
|