Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/middleware/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@
"tsdown": "catalog:devTools",
"typescript": "catalog:devTools",
"typescript-eslint": "catalog:devTools",
"vitest": "catalog:devTools"
"vitest": "4.1.8"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WARNING: Pinning vitest to "4.1.8" breaks the pnpm catalog pattern.

The workspace enforces centralized version management via pnpm-workspace.yaml's devTools catalog, and every other package in the repo (including the other middleware packages) references vitest as catalog:devTools. Introducing a local pin here means this package will track 4.1.8 forever, drifting from the catalog when it is later bumped.

The correct fix is to update the catalog constraint in pnpm-workspace.yaml (currently vitest: ^4.0.15) to vitest: ^4.1.8, keeping catalog:devTools in this package.json.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.

}
}
Loading