Merged
Conversation
- Strict dependency isolation prevents phantom dependency issues as the monorepo grows (vscode extension, future desktop app) - Faster CI installs via content-addressable store and pnpm caching - Smaller node_modules through symlinked global store instead of copies - workspace:* protocol auto-replaces with real versions at publish time - Built-in workspace filtering (--filter) for targeted package operations Changes: - Add pnpm-workspace.yaml with onlyBuiltDependencies for native modules - Convert workspace deps from "*" to "workspace:*" protocol - Update all package.json scripts from npm run to pnpm - Replace npm-run-all with pnpm's built-in parallel regex matching - Update CI workflows (test, e2e, dashboard-e2e) with pnpm/action-setup - Update release protocol, CLAUDE.md, AGENTS.md for pnpm commands - Delete package-lock.json, add pnpm-lock.yaml
waleedkadous
approved these changes
Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
workspace:*protocol auto-replaces with real versions at publish time--filter) for targeted package operationsChanges
pnpm-workspace.yamlwithonlyBuiltDependenciesfor native modules (node-pty, better-sqlite3, esbuild, protobufjs)"*"to"workspace:*"protocolpackage.jsonscripts fromnpm runtopnpmnpm-run-allwith pnpm's built-in parallel regex matching in vscode packagepnpm/action-setupandcache: 'pnpm'package-lock.json, addpnpm-lock.yamlpost-release-e2e.ymlintentionally unchanged (tests published npm packages)After merge — developer setup
npm install -g pnpm@latest # if not already installed rm -rf node_modules pnpm installTest plan
pnpm installsucceeds from repo rootpnpm buildsucceeds in packages/codev (includes dashboard build + skeleton copy)