@rebasepro/cli 0.19.2-canary.g201749f → 0.19.2-canary.g2cd43e9

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.19.2-canary.g201749f",
3
+ "version": "0.19.2-canary.g2cd43e9",
4
4
  "description": "Developer tools for Rebase projects",
5
5
  "keywords": [
6
6
  "cli",
@@ -43,12 +43,12 @@
43
43
  "inquirer": "14.0.2",
44
44
  "jiti": "^2.7.0",
45
45
  "pg": "^8.22.0",
46
- "@rebasepro/agent-skills": "0.19.2-canary.g201749f",
47
- "@rebasepro/client": "0.19.2-canary.g201749f",
48
- "@rebasepro/server": "0.19.2-canary.g201749f",
49
- "@rebasepro/codegen": "0.19.2-canary.g201749f",
50
- "@rebasepro/server-postgres": "0.19.2-canary.g201749f",
51
- "@rebasepro/types": "0.19.2-canary.g201749f"
46
+ "@rebasepro/agent-skills": "0.19.2-canary.g2cd43e9",
47
+ "@rebasepro/codegen": "0.19.2-canary.g2cd43e9",
48
+ "@rebasepro/server": "0.19.2-canary.g2cd43e9",
49
+ "@rebasepro/types": "0.19.2-canary.g2cd43e9",
50
+ "@rebasepro/server-postgres": "0.19.2-canary.g2cd43e9",
51
+ "@rebasepro/client": "0.19.2-canary.g2cd43e9"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/node": "^26.1.2",
@@ -23,6 +23,6 @@
23
23
  "@types/node": "^22.19.4",
24
24
  "@types/ws": "^8.5.10",
25
25
  "tsx": "^4.20.6",
26
- "typescript": "^5.9.2"
26
+ "typescript": "^6.0.3"
27
27
  }
28
28
  }
@@ -16,7 +16,7 @@
16
16
  "@rebasepro/types": "workspace:*"
17
17
  },
18
18
  "devDependencies": {
19
- "typescript": "^5.9.2"
19
+ "typescript": "^6.0.3"
20
20
  },
21
21
  "exports": {
22
22
  ".": {
@@ -23,7 +23,7 @@
23
23
  "@rebasepro/cli": "workspace:*",
24
24
  "@rebasepro/types": "workspace:*",
25
25
  "tsx": "^4.20.6",
26
- "typescript": "^5.9.2"
26
+ "typescript": "^6.0.3"
27
27
  },
28
28
  "dependencies": {
29
29
  "@rebasepro/client": "workspace:*",
@@ -27,6 +27,6 @@
27
27
  "@types/node": "^22.19.4",
28
28
  "@types/ws": "^8.5.10",
29
29
  "tsx": "^4.20.6",
30
- "typescript": "^5.9.2"
30
+ "typescript": "^6.0.3"
31
31
  }
32
32
  }
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/node": "^22.19.4",
20
- "typescript": "^5.9.2"
20
+ "typescript": "^6.0.3"
21
21
  },
22
22
  "exports": {
23
23
  ".": {
@@ -42,10 +42,10 @@
42
42
  "@types/node": "^22.19.4",
43
43
  "@types/react": "^19.0.8",
44
44
  "@types/react-dom": "^19.0.3",
45
- "@vitejs/plugin-react": "^4.4.1",
45
+ "@vitejs/plugin-react": "^6.0.4",
46
46
  "tailwindcss": "^4.1.3",
47
- "typescript": "^5.9.2",
48
- "vite": "^6.4.3",
49
- "vite-plugin-svgr": "^4.3.0"
47
+ "typescript": "^6.0.3",
48
+ "vite": "^8.1.5",
49
+ "vite-plugin-svgr": "^5.2.0"
50
50
  }
51
51
  }
@@ -31,7 +31,11 @@ export default defineConfig({
31
31
  build: {
32
32
  minify: true,
33
33
  outDir: "./dist",
34
- target: "ESNEXT",
34
+ // `es2022`, matching the reference app. Vite 8 minifies CSS with
35
+ // lightningcss, whose target conversion refuses `"ESNEXT"` outright —
36
+ // `[lightningcss minify] Unsupported target "ESNEXT"`, after a
37
+ // successful JS transform, so the build fails at the very end.
38
+ target: "es2022",
35
39
  sourcemap: true,
36
40
  rollupOptions: {
37
41
  output: {
@@ -27,7 +27,7 @@
27
27
  "@rebasepro/cli": "workspace:*",
28
28
  "@rebasepro/types": "workspace:*",
29
29
  "tsx": "^4.20.6",
30
- "typescript": "^5.9.2"
30
+ "typescript": "^6.0.3"
31
31
  },
32
32
  "dependencies": {
33
33
  "@rebasepro/client": "workspace:*",