platform-main — module dependency graph
peerDependencies field,
not guessed.
Every module was ported in dependency order, tier by tier, because getting
the order wrong breaks the build: a module can't compile against an
@ngrx/* peer dependency that hasn't been added to the workspace
yet. The tiers below are exactly what yarn nx graph and each
module's own package.json say — verified again while building
this diagram, not carried over from an old note.
@angular/core/rxjs
component-store/signals/component
were the first modules built "the corrected way" —
ng-add went straight into the shared
schematics package, no per-module copy to migrate later
@ngrx/store as a peer dependencyStore/ActionsSubject's
old inherited RxJS surface, caught by the build, not by inspection
store,
while the bug pattern was still fresh context
data is the single module needing store +
effects + entity at once
ScannedActionsSubject mistyped as a plain
Observable
schematics-core/schematics aren't in the
tier graph:
neither declares an @ngrx/* peer dependency —
schematics-core is pulled in via a relative import every
module's ng-add schematic needs (consolidated from 4 duplicated
copies into one, −12,453 lines), and schematics is the single
package every module's own ng-add now registers into. Both
still get their own full code-review pass under the same 13-module audit
(schematics-core is issue #34) — they're infrastructure, not
exceptions to the review scope.