@papercraneai/cli 1.7.0-beta.0 → 1.7.0-beta.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.
- package/lib/dev-server.js +4 -0
- package/package.json +4 -9
package/lib/dev-server.js
CHANGED
|
@@ -329,6 +329,10 @@ export async function generateScaffolding(workspaceDir) {
|
|
|
329
329
|
await fs.writeFile(path.join(workspaceDir, 'postcss.config.mjs'), POSTCSS_CONFIG, 'utf-8');
|
|
330
330
|
|
|
331
331
|
// next.config.mjs
|
|
332
|
+
// NOTE: next is pinned to 16.1.7 in package.json. Next.js 16.2.0 introduced
|
|
333
|
+
// a cross-origin HMR block that breaks webpack-hmr over Daytona proxy domains.
|
|
334
|
+
// To upgrade past 16.1.7, add allowedDevOrigins: ['*.daytonaproxy01.net'] to
|
|
335
|
+
// the config below.
|
|
332
336
|
const nextConfigPath = path.join(workspaceDir, 'next.config.mjs');
|
|
333
337
|
const nextConfig = `/** @type {import('next').NextConfig} */
|
|
334
338
|
const nextConfig = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@papercraneai/cli",
|
|
3
|
-
"version": "1.7.0-beta.
|
|
3
|
+
"version": "1.7.0-beta.2",
|
|
4
4
|
"description": "CLI tool for managing OAuth credentials for LLM integrations",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"input-otp": "^1.4.2",
|
|
76
76
|
"inquirer": "^8.2.6",
|
|
77
77
|
"lucide-react": "^0.559.0",
|
|
78
|
-
"next": "
|
|
78
|
+
"next": "16.1.7",
|
|
79
79
|
"next-themes": "^0.4.6",
|
|
80
80
|
"open": "^8.4.2",
|
|
81
81
|
"react": "19.2.1",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"react-dom": "19.2.1",
|
|
84
84
|
"react-hook-form": "^7.68.0",
|
|
85
85
|
"react-resizable-panels": "^3.0.6",
|
|
86
|
-
"react-simple-maps": "
|
|
86
|
+
"react-simple-maps": "npm:@vnedyalk0v/react19-simple-maps@^1.0.1",
|
|
87
87
|
"recharts": "^2.15.4",
|
|
88
88
|
"sonner": "^2.0.7",
|
|
89
89
|
"tailwind-merge": "^3.4.0",
|
|
@@ -94,10 +94,5 @@
|
|
|
94
94
|
"vaul": "^1.1.2",
|
|
95
95
|
"zod": "^4.1.13"
|
|
96
96
|
},
|
|
97
|
-
"overrides": {
|
|
98
|
-
"react-simple-maps": {
|
|
99
|
-
"react": "$react",
|
|
100
|
-
"react-dom": "$react-dom"
|
|
101
|
-
}
|
|
102
|
-
}
|
|
97
|
+
"overrides": {}
|
|
103
98
|
}
|