|
It seems like the dependencies in the respective package.json is set to catalog and the version number is written in the pnpm-workplace.yaml. It seems like a pnpm thing which I'm new to, do you have to do it manually or is there an automatic way to install dependencies? |
Answered by
nktnet1
Sep 9, 2025
Replies: 1 comment 1 reply
|
You can install dependencies using pnpm add with --filter e.g. to add If you want to move the version to a shared catalog (this is optional, sometimes you want to lock versions to specific apps/packages instead of sharing them), there does exist a codemod for it:
|
1 reply
Answer selected by
nktnet1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

You can install dependencies using pnpm add with --filter
e.g. to add
url-jointo thewebapp andapipackage:If you want to move the version to a shared catalog (this is optional, sometimes you want to lock versions to specific apps/packages instead of sharing them), there does exist a codemod for it: