mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 19:38:58 +00:00
- Changed VerdaccioRegistry to bind to 0.0.0.0 instead of just port number - This fixes IPv4/IPv6 mismatch where verdaccio bound only to IPv6 ::1 - Updated test snapshots to reflect relative lockfile URLs - Added verdaccio.test.ts to verify registry connectivity The root cause was that when verdaccio was started with just a port number, it would bind to [::1]:PORT (IPv6 only), but bun's HTTP client would try to connect to 127.0.0.1:PORT (IPv4), causing ConnectionRefused errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>