mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 12:29:07 +00:00
* just kernel32 things * more * Update linux_c.zig * Update windows_c.zig * Add workaround Workaround https://github.com/ziglang/zig/issues/16980 * Rename http.zig to bun_dev_http_server.zig * Rename usages * more * more * more * thanks tigerbeetle * Rename `JSC.Node.Syscall` -> `bun.sys` * more * woops * more! * hmm * it says there are only 37 errors, but that's not true * populate argv * it says 32 errors! * 24 errors * fix regular build * 12 left! * Still 12 left! * more * 2 errors left... * 1 more error * Add link to Tigerbeetle * Fix the remainign error * Fix test timeout * Update syscall.zig --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
46 lines
1.4 KiB
Zig
46 lines
1.4 KiB
Zig
const bun = @import("root").bun;
|
|
const string = bun.string;
|
|
const Output = bun.Output;
|
|
const Global = bun.Global;
|
|
const Environment = bun.Environment;
|
|
const strings = bun.strings;
|
|
const MutableString = bun.MutableString;
|
|
const stringZ = bun.stringZ;
|
|
const default_allocator = bun.default_allocator;
|
|
const C = bun.C;
|
|
const std = @import("std");
|
|
|
|
const Fs = @import("../fs.zig");
|
|
const resolver = @import("../resolver/resolver.zig");
|
|
const ast = @import("../import_record.zig");
|
|
const logger = @import("root").bun.logger;
|
|
const Api = @import("../api/schema.zig").Api;
|
|
const options = @import("../options.zig");
|
|
const Bundler = bun.bundler.ServeBundler;
|
|
const js_printer = bun.js_printer;
|
|
const http = @import("../bun_dev_http_server.zig");
|
|
|
|
pub const DefaultBunDefines = struct {
|
|
pub const Keys = struct {
|
|
const window = "window";
|
|
};
|
|
pub const Values = struct {
|
|
const window = "undefined";
|
|
};
|
|
};
|
|
|
|
pub fn configureTransformOptionsForBunVM(allocator: std.mem.Allocator, _args: Api.TransformOptions) !Api.TransformOptions {
|
|
var args = _args;
|
|
|
|
// args.serve = false;
|
|
args.write = false;
|
|
args.resolve = Api.ResolveMode.lazy;
|
|
return try configureTransformOptionsForBun(allocator, args);
|
|
}
|
|
|
|
pub fn configureTransformOptionsForBun(_: std.mem.Allocator, _args: Api.TransformOptions) !Api.TransformOptions {
|
|
var args = _args;
|
|
args.target = Api.Target.bun;
|
|
return args;
|
|
}
|