chore: bump version to 0.1.1#36
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the version of the stagereview package in packages/cli/package.json to 0.1.1. Feedback indicates critical issues regarding version inconsistency with the root package, a package name conflict that violates pnpm workspace rules, and the use of non-existent dependency versions which will lead to installation failures.
| { | ||
| "name": "stagereview", | ||
| "version": "0.1.0", | ||
| "version": "0.1.1", |
There was a problem hiding this comment.
The version bump to 0.1.1 creates an inconsistency with the root package.json (0.1.0). Additionally, the package name stagereview conflicts with the root package name, which is prohibited in pnpm workspaces and will cause resolution errors. Note that several dependencies in this file (e.g., commander@^14, zod@^4, vitest@^4) refer to non-existent versions, which will cause installation failures.
Summary
Bump the stagereview npm package version from 0.1.0 to 0.1.1.
Changes
packages/cli/package.jsonversion field to0.1.1Testing
No functional changes — version bump only.