fix: get bun build working on window (#8712)

* work on bundler

* a

* YAAAAYYAYAYAYYAYA

* get some more bundler tests working

* Update src/bundler/bundle_v2.zig

* rev

* ok

* i converted the cmakelists into LF

* personal review

* we didnt win

* okey they pass

* revert :(

* a

---------

Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
This commit is contained in:
dave caruso
2024-02-08 17:56:26 -08:00
committed by GitHub
parent 1ccf0c2e9c
commit 2d7df726fd
32 changed files with 1617 additions and 1479 deletions

View File

@@ -37,7 +37,7 @@ pub const MutableString = struct {
}
pub fn owns(this: *const MutableString, slice: []const u8) bool {
return @import("root").bun.isSliceInBuffer(slice, this.list.items.ptr[0..this.list.capacity]);
return bun.isSliceInBuffer(u8, slice, this.list.items.ptr[0..this.list.capacity]);
}
pub fn growIfNeeded(self: *MutableString, amount: usize) !void {