Skip to content

pdm-project/pdm-example-monorepo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PDM Monorepo Example

This is an example of a monorepo managed by PDM.

Sub Packages

  • packages/pkg-core
  • packages/pkg-first
  • packages/pkg-second

Note about 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.