Commit 8e539b4
fix(vr): render Angular SortableList cell after Phase-20 source move
Moving SortableList.rozie out of examples/ into @rozie-ui/sortable-list left the
VR Angular cell empty (0 items): the analogjs AOT prebuild + NgtscProgram were
scoped to examples/ only, so the moved component never got AOT-compiled — the
demo's imports:[SortableList] collapsed to any[], no ɵcmp emitted, JIT fallback
→ empty mount (DEBUG.md 'vr Angular JIT compiler unavailable').
Two coordinated changes make it render without contaminating other targets:
- vite.config.ts + tsconfig.app.json: add packages/ui/sortable-list/src to the
Angular prebuildExtraRoots + resolveCrossTreeBareImports + NgtscProgram include
so the moved SortableList AOT-compiles (ɵcmp emitted).
- build-cells.mjs: extend cleanupCrossTreeAngularArtifacts() to sweep the
Angular .rozie.ts disk-cache + SortableList.ts shim from the package src after
the Angular sub-build — mirroring the existing examples/ + demos/ sweep — so
the later solid/lit sub-builds don't pick up the @angular/core-importing
leftover (which otherwise fails with 'Rollup failed to resolve import lit').
Verified in the pinned CI Playwright container (vr.sh -g '[Ss]ortable'):
32 passed, 0 failed (was 27 passed / 5 angular failed). All 5 Angular sortable
cells render (matrix + drag + cross + multi + keyboard); no Lit contamination.
VR-harness only — zero emitter/compiler/IR change; dist-parity unaffected.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent de1a459 commit 8e539b4
3 files changed
Lines changed: 54 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
24 | 39 | | |
25 | 40 | | |
26 | 41 | | |
| |||
120 | 135 | | |
121 | 136 | | |
122 | 137 | | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
123 | 156 | | |
124 | 157 | | |
125 | 158 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
111 | 129 | | |
112 | 130 | | |
113 | 131 | | |
| |||
147 | 165 | | |
148 | 166 | | |
149 | 167 | | |
150 | | - | |
| 168 | + | |
151 | 169 | | |
152 | 170 | | |
153 | | - | |
| 171 | + | |
154 | 172 | | |
155 | 173 | | |
156 | 174 | | |
| |||
0 commit comments