Yeah, I list a few directories in the workspace.yaml file any any pnpm command I use always first checks these directories:
packages:
- app/client
- packages/*
I wouldn’t be opposed to adding workspaces in package.json to follow official npm convention, though I think ideally I’d like to just pass project dirs directly into pinned dependencies
"pinned-dependencies": [
"./app/client",
"./packages/utils"
]
(Don’t think that’s supported, right?)