mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
a3a5258e7d
CI installs with --frozen-lockfile and refused the previous commit: the lockfile still carried the `overrides` block that package.json no longer declares (ERR_PNPM_LOCKFILE_CONFIG_MISMATCH). Regenerated against the committed manifest, so the lockfile now declares neither `overrides` nor `patchedDependencies`. The patch entry is the reason the lockfile was held back in the first place — it points at an untracked patch file — and it is absent here because the committed package.json does not declare it. Local checkouts that want the patch keep it the way they always have: their own package.json and lockfile, both on skip-worktree. Verified by reproducing the CI step: `pnpm install --frozen-lockfile` succeeds, and lint, typecheck, 2494 unit tests and build all pass on the resulting tree.