pfg
pfg
Bun is a single file, so installing it on a user's machine means downloading the right version and saving it somewhere. You don't need to have the user install bun...
Bun won't have a package management API in the near future, but bun could be modified to allow getting access to the main cli from a compiled binary ```diff diff...
The log is scoped to '.mach', so it can be turned off by using a custom log function (zig std.Options.log_scope_levels doesn't seem to be able to turn off logging for...
I don't think all those tests should fail? It seems to be trying to parse `@!ShouldEqual` as part of the shortcut file which causes a parse error in all of...
It looks like `.yarn/install-state` is not supposed to be committed: https://yarnpkg.com/getting-started/qa. Since the project is still on yarn 1, the whole `.yarn` folder can be added to .gitignore
GPA is backed by backing_allocator, which defaults to page_allocator. A freestanding user could initialize a GPA with a custom backing allocator that doesn't use `std.posix.mmap`. To support freestanding std.heap.pageSize, an...
As another example, here's a build script from my project where this would be nice - exporting a module for other packages to use and adding a test: Before: ```zig...