Update yarn lockfile to pass asset generation - #2379
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>
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>
Claude Code PR ReviewPR: #2379 • Head: c8f17c4 • Reviewers: stack:code-reviewer SummaryLockfile-only change ( Review Table
FindingsNo Fail rows and no Critical/High/Medium findings. Two informational notes, neither introduced by this PR:
Verification performed beyond the diff: dependency-graph consistency check over the resulting lockfile (every declared Verdict: PASS |
The lockfile in master is currently out of sync due to intellistory changes. This pr fixes that