When opening pkg:build, I only see a subset of packages in the Dependencies tree:

It turns out, all the ones starting with build (besides the root folder itself) are missing. The cause is the analysis_options exclusions:
This is excluding a folder named build, but we're losing the slash and doing a startsWith:
|
projectFolders = projectFolders.filter((p) => !excludedFolders.find((f) => p.startsWith(f))); |