I'm a bit new to `pnpm` , but I'm wondering how be...
# orm-help
m
I'm a bit new to
pnpm
, but I'm wondering how best to configure node_module dependencies for Prisma in projects that have multiple subprojects - where more than 1 subproject would use Prisma. For example - in my current project I
hoist
everything by default so when I run
npx prisma generate
it generates
@prisma/client
based on my DB/Prisma modules in the root project folder. But I wonder I had another project that used Prisma if this would compete and overwrite the common
@prisma/client
package in root. Sorry if this is confusing (again new to
pnpm
) but is this a problem I am making up (ie would
pnpm
handle this appropriately by default)? And if not, how best to configure subprojects like this for Prisma with
pnpm
?