-
-
Notifications
You must be signed in to change notification settings - Fork 119
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
Consider supporting pnpm #67
Comments
You can definitely support this by creating |
Thanks for the quick reply. Gee, I haven't thought of that! In my simple case, I ended up using an NpxTask, but you're absolutely right, at least for now my basic use case is fulfilled. |
Native support for pnpm is available in 3.4.0 |
pnpm is a fast, disk space efficient package manager relying on hard links and symlinks to save only one copy of a module/version regardless of how many projects you have using the same version of a module or library. Read more about it at https://pnpm.js.org/
As someone who experiments a lot, I have dozens of projects using same versions of libs/modules and the disk space used across all node_modules directories for all those projects adds up fast.
It would be nice to add support for pnpm through a config flag so that developers could choose to make use of it in local builds.
Thanks!
The text was updated successfully, but these errors were encountered: