@rebasepro/cli 0.0.1-canary.f81da60 → 0.1.2

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.
@@ -9,7 +9,7 @@
9
9
  # 2. Backend (Node.js / Hono) with health checks
10
10
  # 3. Frontend (nginx) serving the Vite build
11
11
  #
12
- # For development, use `pnpm dev` instead.
12
+ # For development, use `rebase dev` instead.
13
13
  # ─────────────────────────────────────────────────────────────────────
14
14
 
15
15
  services:
@@ -13,7 +13,7 @@
13
13
  "@rebasepro/types": "workspace:*",
14
14
  "@rebasepro/ui": "workspace:*",
15
15
  "@fontsource/jetbrains-mono": "^5.2.5",
16
- "{{PROJECT_NAME}}-config": "workspace:*",
16
+ "{{PROJECT_NAME}}-config": "*",
17
17
  "react": "^19.0.0",
18
18
  "react-dom": "^19.0.0",
19
19
  "react-router": "^7.0.0",
@@ -4,18 +4,23 @@
4
4
  "description": "Rebase application with PostgreSQL backend",
5
5
  "private": true,
6
6
  "type": "module",
7
+ "workspaces": [
8
+ "frontend",
9
+ "backend",
10
+ "config"
11
+ ],
7
12
  "scripts": {
8
13
  "dev": "rebase dev",
9
- "build": "pnpm -r run build",
10
- "start": "pnpm --filter \"*-backend\" start",
14
+ "build": "rebase build",
15
+ "start": "rebase start",
11
16
  "db:generate": "rebase db generate --collections ../config/collections",
12
17
  "db:migrate": "rebase db migrate",
13
- "db:pull": "rebase db pull",
18
+ "schema:introspect": "rebase schema introspect",
14
19
  "db:push": "rebase db push --collections ../config/collections",
15
20
  "db:studio": "rebase db studio",
16
21
  "schema:generate": "rebase schema generate --collections ../config/collections",
17
22
  "generate:sdk": "rebase generate-sdk",
18
- "deploy": "pnpm run build && pnpm run start"
23
+ "deploy": "rebase build && rebase start"
19
24
  },
20
25
  "devDependencies": {
21
26
  "@rebasepro/cli": "workspace:*",