You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(plugin-auth): seed managed-extension-fields' source scan from __dirname, retiring the package's only TS1470 (#10028)
`managed-extension-fields.test.ts` seeded its repo-wide `*.object.ts` walk from
`dirname(fileURLToPath(import.meta.url))`. plugin-auth is CJS-typed, so under
`module: NodeNext` that is a TS1470 — the package's only one, frozen in a
shrink-only TEST_DEBT ledger.
Seeded from `__dirname` rather than the package's `findUp` idiom, deliberately:
`__dirname` is TS1470-free AND is one of the two seeds
`check:cross-package-test-inputs` recognises. This file is the ONLY escaping
read that gate can see in plugin-auth, so a `findUp` seed would have made the
package's declared input radius read as stale.
TEST_DEBT re-measured 110 -> 109 and the entry's composition note re-tallied
from the same run.
Claude-Session: https://claude.ai/code/session_01PnJHU45vPJj5UQrxe946Bx
Co-authored-by: Claude <noreply@anthropic.com>
0 commit comments