feat(pnpm): replace npm with pnpm in Dockerfiles and scripts for improved package management #1920
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.
Introduction
Hi team! I hope you’re all doing well! I’d like to propose switching our package manager from npm to pnpm to improve our workflow. I’ve outlined the key benefits below and welcome your feedback on this change.
Why Switch to pnpm?
pnpm uses hard links to reuse dependencies, making installs 2-3x faster than npm (e.g., npm install takes ~X seconds,
pnpm ~Y seconds), speeding up dev and CI workflows.
With global dependency storage, pnpm cuts node_modules size from Z MB to W MB, ideal for multi-project setups and servers.
Many modern projects (e.g., Vercel, Nx, Turborepo) use pnpm, making it a community trend worth aligning with.
Overview of Changes
This PR replaces
npm
withpnpm
across the project to leverage its performance benefits, including faster dependency installation and reduced disk usage. The change affects Dockerfiles, startup scripts, and package management files.Detailed Changes
Dockerfile
,document.Dockerfile
,document.e2e.Dockerfile
,document.test.Dockerfile
,maildev.Dockerfile
,relational.e2e.Dockerfile
, andrelational.test.Dockerfile
to usepnpm install
instead ofnpm install
. Addedpnpm
installation steps where necessary.startup.document.ci.sh
,startup.document.dev.sh
,startup.document.test.sh
,startup.relational.ci.sh
,startup.relational.dev.sh
, andstartup.relational.test.sh
to usepnpm
commands.package-lock.json
and generatedpnpm-lock.yaml
to manage dependencies.