Commit 2330fea
committed
fix(scripts): repoint package paths.mts re-exports to scripts/fleet/paths.mts
The scripts/{fleet,repo} segmentation renamed repo-root scripts/paths.mts to
scripts/fleet/paths.mts (git rename in the cascade commit). Three packages
(boringssl-builder, dawn-builder, node-smol-builder) inherit via
`export * from '../../../scripts/paths.mts'`, which now points at the deleted
path — breaking any test suite or script that imports build paths through them
(e.g. node-smol's smol-features-helper suite). Repoint all three re-exports to
'../../../scripts/fleet/paths.mts' (exports are identical; the move was a pure
rename).
With this + the vitest config repoint, node-smol-builder's 4 detection/compile/
gate/features unit suites pass (33 passed, 1 skipped).
Note: paths-mts-inherit-guard's findAncestorPathsMts() walks up for an ancestor
'scripts/paths.mts' and no longer finds the moved root, so it now treats these
package files as exempt (fail-open). That guard's ancestor-walk should learn the
scripts/fleet/ location — tracked separately for the cascade.1 parent 6a77c39 commit 2330fea
3 files changed
Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments