Fix resolve bug with mixed-case node_modules

Former-commit-id: 5bdae0ee491e28b49ceed6136f04e0c1feddc808
This commit is contained in:
Jarred Sumner
2021-08-23 02:30:30 -07:00
parent 8c67007926
commit afb6684782
18 changed files with 2532 additions and 2030 deletions

View File

@@ -17,6 +17,7 @@ pub const MutableString = struct {
}
pub fn deinit(str: *MutableString) void {
str.list.expandToCapacity();
str.list.deinit(str.allocator);
}