Skip to content

Commit fd49e60

Browse files
justin808claude
andcommitted
Fix path references in dummy app after monorepo restructure
The restructure in PR #2114 moved spec/dummy/ to react_on_rails/spec/dummy/, requiring an additional level of directory traversal to reach the monorepo root. Changes: - package.json: Update cd ../.. to cd ../../.. for link-source, lint, and format scripts - Gemfile: Update Gemfile.development_dependencies path from ../../ to ../../../ Fixes CI failure: https://github.com/shakacode/react_on_rails/actions/runs/19625046694/job/56192235815 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 4f7db28 commit fd49e60

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

react_on_rails/spec/dummy/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
source "https://rubygems.org"
44

5-
eval_gemfile File.expand_path("../../Gemfile.development_dependencies", __dir__)
5+
eval_gemfile File.expand_path("../../../Gemfile.development_dependencies", __dir__)
66

77
gem "react_on_rails", path: "../.."

react_on_rails/spec/dummy/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
},
6969
"scripts": {
7070
"preinstall": "yarn run link-source && yalc add --link react-on-rails",
71-
"link-source": "cd ../.. && yarn run build && cd packages/react-on-rails && yalc publish",
72-
"lint": "cd ../.. && yarn run lint",
73-
"format": "cd ../.. && yarn run nps format",
71+
"link-source": "cd ../../.. && yarn run build && cd packages/react-on-rails && yalc publish",
72+
"lint": "cd ../../.. && yarn run lint",
73+
"format": "cd ../../.. && yarn run nps format",
7474
"test:js": "yarn run jest ./tests",
7575
"test": "yarn run build:test && yarn run lint && bin/rspec",
7676
"test:e2e": "playwright test --config=e2e/playwright.config.js",

0 commit comments

Comments
 (0)