Remove accidental file commit - #2378
Conversation
packages/core/.test-archive-mixed and .test-archive-symlink were leftovers from a local unit-test run that got picked up by the version-bump commit. .test-archive-symlink/linked.json is an absolute symlink into a developer's home directory, so it dangles on a fresh CI checkout and makes `babel packages -d build` (build_cjs) fail with ENOENT, breaking the Build Executables job. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
d302b09 deleted these on this branch, but master picked up the same accidental add in d663543 (bump version, #2377), so merging master back in (2405903) restored them and left PR #2378 with an empty diff. packages/core/.test-archive-symlink/linked.json is an absolute symlink into a developer's home directory. It dangles on a fresh CI checkout, so `babel packages -d build` (build_cjs) fails with ENOENT and takes down the Build Executables job. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
52cb2e3 to
ef71bd5
Compare
Claude Code PR ReviewPR: #2378 • Head: ef71bd5 • Reviewers: orchestrator inline (delegation to SummaryRemoves 3 test byproduct files that were accidentally committed in the version-bump commit ( Root cause verifiedRun 31393378096 failed on The committed symlink targeted Scope is complete — the 2 remaining fixtures are pre-existing and intentional
Both pre-existing files are regular files with no dangling target, so they do not break the executable build. Removing them is out of scope here. No test regressionBoth consuming tests create their fixtures at runtime rather than reading committed ones, so the deletions are safe:
CI on Review Table
FindingsNo blocking findings. Two non-blocking follow-ups, both about preventing recurrence rather than anything wrong with this PR:
Verdict: PASS |
* bump version * remove stray archive test fixtures committed by mistake packages/core/.test-archive-mixed and .test-archive-symlink were leftovers from a local unit-test run that got picked up by the version-bump commit. .test-archive-symlink/linked.json is an absolute symlink into a developer's home directory, so it dangles on a fresh CI checkout and makes `babel packages -d build` (build_cjs) fail with ENOENT, breaking the Build Executables job. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * fix unwanted commits * remove stray archive test fixtures reintroduced by the master merge d302b09 deleted these on this branch, but master picked up the same accidental add in d663543 (bump version, #2377), so merging master back in (2405903) restored them and left PR #2378 with an empty diff. packages/core/.test-archive-symlink/linked.json is an absolute symlink into a developer's home directory. It dangles on a fresh CI checkout, so `babel packages -d build` (build_cjs) fails with ENOENT and takes down the Build Executables job. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * regenerate yarn.lock so `lerna publish` sees a clean tree The lockfile block added in 8311242 (IntelliStory, #2339) was edited by hand rather than regenerated, leaving it inconsistent with the dependency graph: - @types/node@* had no entry, though @types/cacheable-request, @types/keyv, @types/responselike and @types/yauzl all require it - get-stream@^5.1.0 had no entry, though cacheable-request@^7.0.2 requires it - @types/yauzl@^2.9.1 was orphaned — nothing referenced it So `yarn` on a clean CI checkout resolved the two missing descriptors, pruned the orphan and rewrote the file. That left the working tree dirty, and `lerna publish from-package` aborted with EUNCOMMIT (M yarn.lock), failing the Release job. Regenerated with a plain `yarn install`. `yarn install --frozen-lockfile` is now a no-op, so the release checkout stays clean. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
Accidentally added some local files as part of bump version PR which is now failing binary generation. This PR fixes that