-
Notifications
You must be signed in to change notification settings - Fork 0
revert: reset to d25f88e #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,6 @@ | ||
| { | ||
| "buildCommand": "pnpm run build", | ||
| "installCommand": "pnpm install", | ||
| "ignoreCommand": "npx turbo-ignore", | ||
| "buildCommand": "npm run build", | ||
| "installCommand": "cd ../.. && npm install", | ||
| "framework": "nextjs" | ||
| } | ||
|
|
||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,8 +12,7 @@ | |
| "new:demo": "tsx scripts/new-demo.ts", | ||
| "velt:update": "node scripts/update-velt-versions.js", | ||
| "velt:check": "node scripts/update-velt-versions.js --check", | ||
| "velt:dry-run": "node scripts/update-velt-versions.js --dry-run", | ||
| "vercel:config": "node scripts/add-vercel-config.js" | ||
| "velt:dry-run": "node scripts/update-velt-versions.js --dry-run" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
|
|
@@ -40,16 +39,13 @@ | |
| "packages/*" | ||
| ], | ||
| "packageManager": "[email protected]", | ||
| "pnpm": { | ||
| "overrides": { | ||
| "@veltdev/crdt": "4.5.8", | ||
| "@veltdev/crdt-react": "4.5.8", | ||
| "@veltdev/tiptap-crdt-react": "^4.5.9-beta.4", | ||
| "@veltdev/blocknote-crdt-react": "4.5.0-beta.3", | ||
| "@veltdev/codemirror-crdt-react": "4.5.8", | ||
| "@veltdev/reactflow-crdt": "4.5.8", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. pnpm overrides moved to wrong field, no longer appliedThe |
||
| "@veltdev/react": "^4.6.10", | ||
| "@codemirror/state": "^6.5.2" | ||
| } | ||
| "overrides": { | ||
| "@veltdev/crdt": "4.5.8", | ||
| "@veltdev/crdt-react": "4.5.8", | ||
| "@veltdev/tiptap-crdt-react": "^4.5.9-beta.4", | ||
| "@veltdev/blocknote-crdt-react": "4.5.0-beta.3", | ||
| "@veltdev/codemirror-crdt-react": "4.5.8", | ||
| "@veltdev/reactflow-crdt": "4.5.8", | ||
| "@veltdev/react": "^4.6.10" | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vercel config uses npm instead of pnpm
The Vercel configuration was changed to use
npm run buildandnpm installwhile the monorepo uses pnpm (as specified bypackageManager: "[email protected]"in the rootpackage.json). Using npm will not respect thepnpm-lock.yamllockfile, potentially installing different dependency versions and not properly handling pnpm workspace configurations. TheinstallCommandofcd ../.. && npm installfurther suggests misalignment with the pnpm-based monorepo setup.