Skip to content
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

feat(pnpm): replace npm with pnpm in Dockerfiles and scripts for improved package management #1920

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

lifefloating
Copy link

@lifefloating lifefloating commented Mar 19, 2025

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?

  • Much Faster Installs
    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.
  • Saves Disk Space
    With global dependency storage, pnpm cuts node_modules size from Z MB to W MB, ideal for multi-project setups and servers.
  • Modern Node.js Standard
    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 with pnpm 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

  • Dockerfiles: Updated Dockerfile, document.Dockerfile, document.e2e.Dockerfile, document.test.Dockerfile, maildev.Dockerfile, relational.e2e.Dockerfile, and relational.test.Dockerfile to use pnpm install instead of npm install. Added pnpm installation steps where necessary.
  • Scripts: Modified startup.document.ci.sh, startup.document.dev.sh, startup.document.test.sh, startup.relational.ci.sh, startup.relational.dev.sh, and startup.relational.test.sh to use pnpm commands.
  • Package Management: Removed package-lock.json and generated pnpm-lock.yaml to manage dependencies.
de050dde-9149-42ab-b446-88dd3eb905e8 d4f03350-acff-4c4b-8c31-bd8f3283caa8 8e4cab37-9a5b-48f7-83a1-205d73418e1c

@lifefloating lifefloating changed the title feat: replace npm with pnpm in Dockerfiles and scripts for improved package management feat(pnpm): replace npm with pnpm in Dockerfiles and scripts for improved package management Mar 19, 2025
@lifefloating
Copy link
Author

lifefloating commented Mar 19, 2025

@Shchepotin
Hi @maintainers, just wanted to check if there’s any feedback or updates on this PR. Happy to address any questions or make adjustments if needed! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant