Commit 237cd5a
Fix install_js_dependencies to use system() calls instead of run()
During rebase conflict resolution, the method incorrectly kept run() calls
instead of adopting master's enhanced system() calls. This was causing
CI test failures due to package manager installation issues.
Changes:
- Use system("yarn", "install") instead of run "yarn install"
- Use system("pnpm", "install") instead of run "pnpm install"
- Use system("npm", "install") instead of run "npm install"
This combines master's enhanced implementation with our method organization improvements.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>1 parent f177299 commit 237cd5a
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
196 | 196 | | |
197 | 197 | | |
198 | 198 | | |
199 | | - | |
| 199 | + | |
200 | 200 | | |
201 | | - | |
| 201 | + | |
202 | 202 | | |
203 | 203 | | |
204 | 204 | | |
205 | | - | |
| 205 | + | |
206 | 206 | | |
207 | 207 | | |
208 | 208 | | |
| |||
0 commit comments