This is an example of a monorepo managed by PDM.
packages/pkg-core
packages/pkg-first
packages/pkg-second
pdm install
If you change the dependencies in one of the subprojects, the pdm install
command will not detect that the lock file needs to be re-generated.
You will thus have to run pdm lock
manually, before running pdm install
.
Alternatively, you may for example run pdm update pkg-first
, if you modified the depedencies of the pkg-first
sub-project.