Hacker News new | ask | show | jobs
by vadiml 1355 days ago
The limitation of this approach it that all project must reside on the same device as the pnpm store. There is no cross-device symlinks
2 comments

Which becomes a problem using containers in a monorepo.
How does that make it problematic?
Can’t hard link across mount point, so either copy to the container or install inside the container (both negate pnpm’s benefit).

Our workaround is to put the global cache in the project so we can mount it alongside the code in the same mountpoint.

Thanks, I wouldn’t have thought of sharing npm packages like that.

I would argue building different containers from a shared node_modules is inherently dangerous anyway. Sounds like your ”workaround” is in fact pretty much the optimal setup for quickly performing multiple similar builds.

> There is no cross-device symlinks

Do you mean hardlinks?