You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 <noreply@anthropic.com>
0 commit comments