Skip to content

Commit a7043fa

Browse files
justin808claude
andcommitted
Fix: Revert workspace protocol to version numbers for Yarn Classic
Yarn Classic (v1.22.22) doesn't support the workspace:* protocol - that's a Yarn Berry/Modern feature. This was causing CI failures with: error Couldn't find any versions for "react-on-rails" that matches "workspace:*" Changes: - Reverted react-on-rails-pro-node-renderer dependencies from workspace:* back to explicit version numbers (16.2.0-beta.11) - Updated node-renderer version to match other packages (beta.11) Trade-offs: - Manual version updates needed when bumping versions (original concern) - But compatible with Yarn Classic which the project uses - Alternative would require migrating to Yarn Berry/Modern The code review suggestion for workspace:* was good in principle but requires Yarn >=2.0. Since this project uses Yarn Classic, we'll stick with explicit version numbers and update them together during releases. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 1aa2546 commit a7043fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/react-on-rails-pro-node-renderer/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-on-rails-pro-node-renderer",
3-
"version": "16.2.0-beta.10",
3+
"version": "16.2.0-beta.11",
44
"protocolVersion": "2.0.0",
55
"description": "React on Rails Pro Node Renderer for server-side rendering",
66
"type": "module",
@@ -39,8 +39,8 @@
3939
"lockfile": "^1.0.4",
4040
"pino": "^9.0.0",
4141
"pino-pretty": "^13.0.0",
42-
"react-on-rails": "workspace:*",
43-
"react-on-rails-pro": "workspace:*"
42+
"react-on-rails": "16.2.0-beta.11",
43+
"react-on-rails-pro": "16.2.0-beta.11"
4444
},
4545
"devDependencies": {
4646
"@honeybadger-io/js": "^6.10.1",

0 commit comments

Comments
 (0)