Commit 1850fde
Fix prepack script to use yarn instead of npm in package-scripts.yml
The build.prepack script in package-scripts.yml was using `npm run build`
which causes failures in CI. This is inconsistent with the rest of the
codebase which uses yarn.
Changed line 29 from:
(npm run build >/dev/null 2>&1 || true)
To:
(yarn run build >/dev/null 2>&1 || true)
This matches the fix previously made in packages/react-on-rails/package.json
(commit 9f254fb) but was missed in the root package-scripts.yml file.
Fixes CI error:
Building react-on-rails seems to have failed!
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent e072d11 commit 1850fde
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments