diff options
Diffstat (limited to 'root.zig')
-rw-r--r-- | root.zig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/root.zig b/root.zig new file mode 100644 index 000000000..607511882 --- /dev/null +++ b/root.zig @@ -0,0 +1,16 @@ +pub usingnamespace @import("src/main.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"); +}; |