Skip to content

chore: upgrade to pnpm 10 #19327

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: upgrade to pnpm 10
  • Loading branch information
aslilac committed Aug 12, 2025
commit d22cfb4bb104eaa5a10d10cb4a4484b63cd80c13
2 changes: 1 addition & 1 deletion dogfood/coder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ RUN source $NVM_DIR/nvm.sh && \
ENV PATH=$NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
RUN corepack enable && \
corepack prepare npm@10.8.1 --activate && \
corepack prepare pnpm@9.15.1 --activate
corepack prepare pnpm@10.14.0 --activate

RUN pnpx playwright@1.47.0 install --with-deps chromium

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
formatter = pkgs.nixfmt-rfc-style;

nodejs = pkgs.nodejs_20;
pnpm = pkgs.pnpm_9.override {
pnpm = pkgs.pnpm_10.override {
inherit nodejs; # Ensure it points to the above nodejs version
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"_comment": "This version doesn't matter, it's just to allow importing from other repos.",
"name": "coder",
"version": "0.0.0",
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"scripts": {
"format-docs": "markdown-table-formatter $(find docs -name '*.md') *.md",
"lint-docs": "markdownlint-cli2 --fix $(find docs -name '*.md') *.md",
Expand Down
5 changes: 3 additions & 2 deletions site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@
"semver": "7.6.2"
},
"engines": {
"pnpm": ">=9.0.0 <10.0.0",
"pnpm": ">=10.0.0 <11.0.0",
"node": ">=18.0.0 <21.0.0"
},
"pnpm": {
Expand All @@ -202,6 +202,7 @@
"esbuild": "^0.25.0",
"form-data": "4.0.4",
"prismjs": "1.30.0"
}
},
"ignoredBuiltDependencies": ["storybook-addon-remix-react-router"]
}
}
Loading