Files
bun.sh/test/cli/install
Claude Bot c8f3699e03 Fix npm override parsing - parent is key, children are nested values
After testing actual npm behavior, discovered the correct format is:
{
  "overrides": {
    "parent-pkg": {
      "child-pkg": "version"
    }
  }
}

NOT what I originally implemented (child as key with parent nested inside).

Updated parseFromOverrides to correctly parse this structure. Override is now
stored in lockfile correctly, but runtime application still needs debugging.

Test results:
- Parsing works ✓ (override appears in lockfile)
- Runtime application ✗ (override not applied during install)

Next: Debug why parent_name_hash lookup isn't working in PackageManagerEnqueue
2025-10-03 06:23:34 +00:00
..
2025-09-29 23:22:57 -07:00
2025-08-27 06:39:11 -07:00
2025-08-27 06:39:11 -07:00
2025-08-12 17:07:46 -07:00