mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* wasm * WASM test scanner * Update Makefile * Update Makefile * Configurable heap limit * slightly better error * Update js_parser.zig * Update path.test.js * Update node.mjs --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
23 lines
739 B
Zig
23 lines
739 B
Zig
pub usingnamespace @import("src/main.zig");
|
|
|
|
pub const bun = @import("src/bun.zig");
|
|
|
|
pub const content = struct {
|
|
pub const error_js_path = "packages/bun-error/dist/index.js";
|
|
pub const error_js = @embedFile(error_js_path);
|
|
|
|
pub const error_css_path = "packages/bun-error/dist/bun-error.css";
|
|
pub const error_css_path_dev = "packages/bun-error/bun-error.css";
|
|
|
|
pub const error_css = @embedFile(error_css_path);
|
|
};
|
|
|
|
pub const completions = struct {
|
|
pub const bash = @embedFile("./completions/bun.bash");
|
|
pub const zsh = @embedFile("./completions/bun.zsh");
|
|
pub const fish = @embedFile("./completions/bun.fish");
|
|
};
|
|
|
|
pub const JavaScriptCore = @import("./src/jsc.zig");
|
|
pub const C = @import("./src/c.zig");
|