aboutsummaryrefslogtreecommitdiff
path: root/src/cli.zig
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <jarred@jarredsumner.com> 2023-04-07 20:08:01 -0700
committerGravatar GitHub <noreply@github.com> 2023-04-07 20:08:01 -0700
commit6362414d65b69cd01624e84d08eca654fc8cb101 (patch)
tree77bda836b819769002b746da3c4b7bdb90546f41 /src/cli.zig
parentc0c5f07218096a52ed12d86374f785e6dc331fa4 (diff)
downloadbun-6362414d65b69cd01624e84d08eca654fc8cb101.tar.gz
bun-6362414d65b69cd01624e84d08eca654fc8cb101.tar.zst
bun-6362414d65b69cd01624e84d08eca654fc8cb101.zip
Bun gets a new bundler (#2312)
* alright now just gotta try running it * fix a gajillion compiler errors * even more code * okay i fixed more errors * wip * Update launch.json * Update string_builder.zig * `fast_debug_build_mode` makes debug build 2x faster * Update bundle_v2.zig * more code! * It bundles! * Rename `Bun.Transpiler` to `Bun.Bundler` * `import()` expressions almost work * wip attempt to get import() expr to work * Bundle namespace imports * Attempt to fix the issue with import() unsuccessfully * consider current working directory when resolving relative paths (#2313) * consider current working directory when resolving relative paths fixes #2298 * comment test --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> * support `expect().toThrow(/pattern/)` (#2314) - fix time-zone-dependent test failure * fix missing `Blob` error messages on Linux (#2315) * fix & clean up tests (#2318) - skip flaky tests when running as `root` - use `expect().toThrow()` - clean up temporary files after tests * feat(tty): add some `tty.WriteStream` methods to `process.{stdout, stderr}` (#2320) * feat(stdio): add some `tty.WriteStream` methods * chore(builtins): add process builtin gen'd code * Fix docker install command * `bun test` on macOS in GitHub Actions (#2322) * Fixes #2323 * throw invalid parameter errors in `crypto.scryptSync` (#2331) * throw invalid parameter errors * remove comptime, add empty buffer function * remove error_name comptime * Add reference documentation for bun:test (#2327) * Reorganize tests (#2332) * Fix html-rewriter.test.js * fix the wrong thing being incremented in hmr example (#2334) * Add more test harness * Improve Benchmarking page, small fixes (#2339) * Improve benchmarking page * WIP * Add typescript instructions to hot * Document preload in Plugins. Fix loader in plugin types. * Fix typo * Fix links * run prettier * Document openInEditor * improve `Buffer` compatibility with Node.js (#2341) * improve `Buffer` compatibility with Node.js * use `memmove()` allow `encoding` to be `undefined` * run `bun test` after macOS builds (#2343) * "binary" is an alias of "latin1" Fixes https://github.com/oven-sh/bun/issues/2110 * More spec compliant `Blob.prototype.type` (#2340) * Make `Blob.prototype. type` more spec compliant * Add a few more checks for isNumber() * Fix `make headers` * Safer JSValue.isString() * More tests for blob.slice * Make `Blob.prototype.type` more spec compliant * Add isASCII check * Fix types * Fix failing type test * Update blob.zig * Update blob.zig * Fix .eql check on empty values --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> * Fix bug in test runner * Support `import()` expressions * Implement `require()` * clean up bit_set.zig slightly * Move some things around * misc cleanup * Cleanup some things * Fix a lot of stuff * Fix `module.exports.fn = fn;` in ESM entry point * Fix crash due when printing file * Fix issue with class names * Fix issue with `export default identifier` * Update js_parser.zig * optimization: inline single-property object acceses and arrays * Fix undefined memory in renamed symbols list * Handle call target * wip * Inline it * Fix undefined memory issue when reclaiming blocks in ast * Halt linking on any parse errors * alias * Rename `enable_bundling` to `enable_legacy_bundling` * Workaround anonymous struct literal zig bug * Use slower approach (without bitset) because it doesn't break after 8 symbols * Fix incorrectly-renaming statically defined symbols * Handle more edgecases in our bit_set fork * Reduce number of allocations for `define` * Do not rename unbound symbols * Clean up dot defines a little more * Make the generated names prettier * Workaround runtime symbol missing issue * Fail the build on errors * Support export * from * Support `--outfile` * partially fix renaming * fanicer symbol renaming impl * misc, extremely revertible cleanup * Fix up some bugs with symbol renaming * formatting * Update launch.json * Parse `__PURE__` comments * clean up simd code for pure comments * changes to merge * workaround runtime issue * Fix issue with `export * as` not propagating correctly * Make all top-level declarations `var` when bundling * Fix missing prefix * Fix assigning to stack copy * Fix missing runtime symbol * Fix bug with namespace exports * Dramatically reduce allocations * Update launch.json * Add missing flags * Update js_parser.zig * small cleanup * Make the export name better * Fix unnecessary `var foo = foo` * Implement CommonJS -> ESM conversion * Implement module redirects * Port esbuild bundler tests for new bundler (#2380) * started porting esbuild tests * clean up test names and api before moving on * port tests using a program i wrote * replace todo generated comment * fix generated tests not including some files * work on tests * [github web editor] add define, external, inject, minifySyntax, minifyWhitespace options. * get most of the todo comments out of the way, but expectBundled does not handle most of the cases * continue working on esbuild tests * use test.skip for unsupported tests * Fixups for test runner * Hoist imports & exports * Fix test * Hoist classes * bundler test refining, 51/835 * Fix runtime require * bundler test refining, 81/835 * bundler test refining, 93/835 * Make the test work in any timezone * feat(expect): update toBeInstanceOf (#2396) * feat: update instanceof binding * fix: according to PR comments * Rename `expectObjectTypeCount` to `expectMaxObjectTypeCount` * Fix socket tests with connection errors (#2403) * release pending activity with connection error handler * unref poll_ref * remove trailing comma * Organize Dockerfiles for official status * Remove test Dockerfile * Remove old Docker workflow * Feat(test): add toMatch (#2404) * Fix various fetch/response/request tests (#2416) * fix most fetch tests, skip a few * fastGet, toValueGC, and invalid init * bigint unreachable, range error, log process as process * remove extra fetch_headers * remove js_type parameter, check isObject() * throw invalid mime type error, use enum literal * switch back to promise rejection * RangeError pascal case * Fix several bugs (#2418) * utf16 codepoint with replacement character * Fix test failure with `TextEncoder("ascii')` * Add missing type * Fix Response.prototype.bodyUsed and Request.prototype.bodyUsed * Fix bug with scrypt error not clearing * Update server.zig * oopsie * :nail_care: * docs: Use correct url in the 'Issues' link in README header (#2420) * Fix crash when rendering error page and the server or network is slow * [fetch] Make the default body value `null` when unspecified This is better aligned with the fetch spec * Make node-net tests less flaky * [node:net] Fix issue with `listen` callback firing before it's listening * Always clear timers in node test harness * Fix out of bounds access Repro'd in Buffer tests * Update UWS cc @cirospaciari * Make this test more thorough * Hanging abort test * 0 length body is a null stream * Several bug fixes (#2427) * Fix test * Fix segfault when unexpected type is passed in `expect().toThrow` * Fix issues with request constructor * Don't bother cloning headers when its empty * woops * more tests * fix incorrect test * Make the fetch error messages better * Update response.zig * Fix test that failed on macOS * Fix test * Remove extra hash table lookups * Support running dummy registry directly cc @alexlamsl * Update test * Update test * fixup * Workaround crash in test runner * Fixup test * Fixup test * Update os.test.js --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> * Remove usages of port numbers in tests * Set -O2 and -fno-rtti * Remove -g * Prevent undefined memory access * [bun test] Implement `--rerun-each` flag to run each test N times * Reduce number of module scopes created * add some extra abort checks into streams (#2430) * add some checks to avoid UAF * avoid multiple calls to finalize if endFromJS is called more than once * fix no-op comment * mark as requested_end on abort * remove requested_end from abort * remove unnecessary check (#2432) * Fix bug with scoped aliased dependencies in bun install on macOS * remove `addLog`, remove `--prominent-compile-errors` * Finish the upgrade * Optional chaining flag * Implement same_target_becomes_destructuring optimization * bundler test refining, 109/835 * Reset bindings * Support multiple entry points * Implement `--entry-names` flag * Use a tempdir with a better name * prettier * Log file name * Update js_parser.zig * Mark all bun builtins as external * Make resolve errors actually errors * Update bundler_default.test.ts * Fix `await import(foo)` * WIP react server components * Do more stuff at runtime * :scissors: * Support automatic JSX imports * Use a module cache for now * Update tsconfig.base.json * Fix ThisOutsideFunctionNotRenamed * woopsie * moar cpu * clamp it * fixup * Add a bunch of assertions * Bun uses automatic runtime by default * Parse Import Attributes * Add a note about Valgrind * Update developing.md * Fix up code splitting for React Server Components * Implement client component manifest * Fix crash with --react-server-components and no client components * Backport https://github.com/ziglang/zig/commit/4d31e3c917a05541394c544708f0047cfb53331a * Update launch.json * Fix for latest zig * Workaround bug with ?[]const string Occasionally saw alignment errors in this code Workaround https://github.com/ziglang/zig/issues/15085 related: https://github.com/ziglang/zig/pull/15089 * switch to regular slice * Avoid initializing named_imports and named_exports as undefined * Reduce usages of `undefined` * Add more assertions * --watch wip * Update javascript.zig * Possibly fix the race condition * Faster `do` * bump allocator * Reduce the size of `Symbol` slightly * Alphabetically sort runtime import symbols, for determinism * Prepare for code splitting * handle overlapping stdout * pure * clean up some things * Fix bug with `$$typeof` * Address CommonJS -> ESM hoisting bug * Support `"use server"` in manifest * Implement `"use server"` * Fix importing bun builtins when bundling * Make `commonjs_to_esm` a feature flag, fix some splitting bugs * :scissors: * fixme remove this * Fix crash in longestCommonPath * Chunking! Just need to do import paths now. * Import paths work...now trying to figure out how to make runtime symbols work * add workaround * Replace `bun bun` with `bun build` * Fix crash with dual package hazard * Fix many CommonJS <> ESM interop bugs * Support package.json `"sideEffects"` also skip loading unnecessary package.json data in `bun run` * add a not good --watch implementation * bundler test refining, 140/831 * remove accidentally committed file * do not return status code 1 on successful bundles * bundler test refining, 159/830 * pass exit code to exitOrWatch * clean up help menu -remove two spaces to line up bun build -moved all <r> tags to the end of the text they are colorizing -moved other colors to the start of the text they colorize -removed unneeded <r> tags, keeping only one at the start of the block * importstar is fully ported * wip * you can run code in this branch now * Disable this transform * organize and document bundler tests * Fix double import * Fix sloppy mode function declarations * Disable our CommonJS transform for now * add `assertNotPresent` to make splitting cases easier * Bump! * Update bun.d.ts * use import.meta.require in runtime code * Disable this again * Fix dirname * Fix ESM -> CJS wrapper * :nail_care: --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: Alex Lam S.L <alexlamsl@gmail.com> Co-authored-by: Derrick Farris <mr.dcfarris@gmail.com> Co-authored-by: Ashcon Partovi <ashcon@partovi.net> Co-authored-by: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Co-authored-by: pfg <pfg@pfg.pw> Co-authored-by: Colin McDonnell <colinmcd94@gmail.com> Co-authored-by: dave caruso <me@paperdave.net> Co-authored-by: zhiyuan <32867472+zhiyuang@users.noreply.github.com> Co-authored-by: Dylan Conway <dylan.conway567@gmail.com> Co-authored-by: Kamil Ogórek <kamil.ogorek@gmail.com> Co-authored-by: Ciro Spaciari <ciro.spaciari@gmail.com>
Diffstat (limited to 'src/cli.zig')
-rw-r--r--src/cli.zig205
1 files changed, 126 insertions, 79 deletions
diff --git a/src/cli.zig b/src/cli.zig
index 530dc5e30..2e4f900b5 100644
--- a/src/cli.zig
+++ b/src/cli.zig
@@ -36,27 +36,8 @@ const Router = @import("./router.zig");
const NodeModuleBundle = @import("./node_module_bundle.zig").NodeModuleBundle;
-const AddCommand = @import("./cli/add_command.zig").AddCommand;
-const BuildCommand = @import("./cli/build_command.zig").BuildCommand;
-const BunCommand = @import("./cli/bun_command.zig").BunCommand;
-const CreateCommand = @import("./cli/create_command.zig").CreateCommand;
-const CreateListExamplesCommand = @import("./cli/create_command.zig").CreateListExamplesCommand;
-const DevCommand = @import("./cli/dev_command.zig").DevCommand;
-const DiscordCommand = @import("./cli/discord_command.zig").DiscordCommand;
-const InstallCommand = @import("./cli/install_command.zig").InstallCommand;
-const LinkCommand = @import("./cli/link_command.zig").LinkCommand;
-const UnlinkCommand = @import("./cli/unlink_command.zig").UnlinkCommand;
-const InstallCompletionsCommand = @import("./cli/install_completions_command.zig").InstallCompletionsCommand;
-const PackageManagerCommand = @import("./cli/package_manager_command.zig").PackageManagerCommand;
-const RemoveCommand = @import("./cli/remove_command.zig").RemoveCommand;
-const RunCommand = @import("./cli/run_command.zig").RunCommand;
-const ShellCompletions = @import("./cli/shell_completions.zig");
-const TestCommand = @import("./cli/test_command.zig").TestCommand;
-const UpgradeCommand = @import("./cli/upgrade_command.zig").UpgradeCommand;
-const BunxCommand = @import("./cli/bunx_command.zig").BunxCommand;
-
const MacroMap = @import("./resolver/package_json.zig").MacroMap;
-
+const TestCommand = @import("./cli/test_command.zig").TestCommand;
const Reporter = @import("./report.zig");
pub var start_time: i128 = undefined;
const Bunfig = @import("./bunfig.zig").Bunfig;
@@ -213,6 +194,10 @@ pub const Arguments = struct {
const build_only_params = [_]ParamType{
clap.parseParam("--sourcemap <STR>? Build with sourcemaps - 'inline', 'external', or 'none'") catch unreachable,
clap.parseParam("--outdir <STR> Default to \"dist\" if multiple files") catch unreachable,
+ clap.parseParam("--entry-names <STR> Pattern to use for entry point filenames") catch unreachable,
+ clap.parseParam("--outfile <STR> Write to a file") catch unreachable,
+ clap.parseParam("--server-components Enable React Server Components (experimental)") catch unreachable,
+ clap.parseParam("--splitting Split up code!") catch unreachable,
};
// TODO: update test completions
@@ -437,7 +422,6 @@ pub const Arguments = struct {
}
opts.serve = cmd == .DevCommand;
opts.main_fields = args.options("--main-fields");
- opts.generate_node_module_bundle = cmd == .BunCommand;
// we never actually supported inject.
// opts.inject = args.options("--inject");
opts.extension_order = args.options("--extension-order");
@@ -510,11 +494,30 @@ pub const Arguments = struct {
// var output_dir = args.option("--outdir");
var output_dir: ?string = null;
const production = false;
+ var output_file: ?string = null;
if (cmd == .BuildCommand) {
if (args.option("--outdir")) |outdir| {
if (outdir.len > 0) {
- output_dir = outdir;
+ ctx.bundler_options.outdir = outdir;
+ }
+ } else if (args.option("--outfile")) |outfile| {
+ if (outfile.len > 0) {
+ ctx.bundler_options.outfile = outfile;
+ }
+ }
+
+ if (args.flag("--splitting")) {
+ ctx.bundler_options.code_splitting = true;
+ }
+
+ if (args.option("--entry-names")) |entry_names| {
+ ctx.bundler_options.entry_names = entry_names;
+ }
+
+ if (comptime FeatureFlags.react_server_components) {
+ if (args.flag("--server-components")) {
+ ctx.bundler_options.react_server_components = true;
}
}
@@ -536,11 +539,11 @@ pub const Arguments = struct {
var entry_points = ctx.positionals;
switch (comptime cmd) {
- .BunCommand => {
+ .BuildCommand => {
if (entry_points.len > 0 and (strings.eqlComptime(
entry_points[0],
- "bun",
- ))) {
+ "build",
+ ) or strings.eqlComptime(entry_points[0], "bun"))) {
entry_points = entry_points[1..];
}
},
@@ -555,24 +558,6 @@ pub const Arguments = struct {
entry_points = entry_points[1..];
}
},
- .BuildCommand => {
- if (entry_points.len > 0 and (strings.eqlComptime(
- entry_points[0],
- "build",
- ) or strings.eqlComptime(
- entry_points[0],
- "b",
- ))) {
- entry_points = entry_points[1..];
- }
-
- opts.write = entry_points.len > 1 or
- output_dir != null or
- @enumToInt(opts.source_map orelse Api.SourceMapMode._none) > 0;
- if ((opts.write orelse false) and (output_dir orelse "").len == 0) {
- output_dir = "out";
- }
- },
.RunCommand => {
if (entry_points.len > 0 and (strings.eqlComptime(
entry_points[0],
@@ -596,7 +581,7 @@ pub const Arguments = struct {
var jsx_runtime = args.option("--jsx-runtime");
var jsx_production = args.flag("--jsx-production");
const react_fast_refresh = switch (comptime cmd) {
- .BunCommand, .DevCommand => !(args.flag("--disable-react-fast-refresh") or jsx_production),
+ .BuildCommand, .DevCommand => !(args.flag("--disable-react-fast-refresh") or jsx_production),
else => true,
};
@@ -615,7 +600,10 @@ pub const Arguments = struct {
}
switch (comptime cmd) {
- .AutoCommand, .DevCommand, .BuildCommand, .BunCommand => {
+ .AutoCommand,
+ .DevCommand,
+ .BuildCommand,
+ => {
if (args.option("--public-dir")) |public_dir| {
if (public_dir.len > 0) {
opts.router = Api.RouteConfig{ .extensions = &.{}, .dir = &.{}, .static_dir = public_dir };
@@ -710,7 +698,7 @@ pub const Arguments = struct {
};
}
- if (cmd == .BunCommand or !FeatureFlags.dev_only) {
+ if (cmd == .BuildCommand) {
if (opts.entry_points.len == 0 and opts.framework == null and opts.node_modules_bundle_path == null) {
return error.MissingEntryPoint;
}
@@ -727,6 +715,9 @@ pub const Arguments = struct {
}
opts.output_dir = output_dir;
+ if (output_file != null)
+ ctx.debug.output_file = output_file.?;
+
return opts;
}
};
@@ -778,25 +769,25 @@ pub const HelpCommand = struct {
pub fn printWithReason(comptime reason: Reason) void {
// the spacing between commands here is intentional
const fmt =
- \\> <r> <b><magenta>run <r><d> ./my-script.ts <r>Run JavaScript with bun, a package.json script, or a bin<r>
- \\> <r> <b><green>x <r> <d>bun-repl <r> Install and execute a package bin <d>(bunx)<r>
+ \\> <r><b><magenta>run<r> <d>./my-script.ts<r> Run JavaScript with bun, a package.json script, or a bin
+ \\> <b><magenta>build<r> <d>./a.ts ./b.jsx<r> Bundle TypeScript & JavaScript into a single file
+ \\> <b><green>x<r> <d>bun-repl<r> Install and execute a package bin <d>(bunx)<r>
\\
- \\> <r> <b><cyan>init<r> Start an empty Bun project from a blank template<r>
- \\> <r> <b><cyan>create <r><d>next ./app<r> Create a new project from a template <d>(bun c)<r>
- \\> <r> <b><green>install<r> Install dependencies for a package.json <d>(bun i)<r>
- \\> <r> <b><blue>add <r><d> {s:<16}<r> Add a dependency to package.json <d>(bun a)<r>
- \\> <r> <b><blue>link <r> Link an npm package globally<r>
- \\> <r> remove <r><d> {s:<16}<r> Remove a dependency from package.json <d>(bun rm)<r>
- \\> <r> unlink <r> Globally unlink an npm package
- \\> <r> pm <r> More commands for managing packages
+ \\> <b><cyan>init<r> Start an empty Bun project from a blank template
+ \\> <b><cyan>create<r> <d>next ./app<r> Create a new project from a template <d>(bun c)<r>
+ \\> <b><green>install<r> Install dependencies for a package.json <d>(bun i)<r>
+ \\> <b><blue>add<r> <d>{s:<16}<r> Add a dependency to package.json <d>(bun a)<r>
+ \\> <b><blue>link<r> Link an npm package globally
+ \\> remove<r> <d>{s:<16}<r> Remove a dependency from package.json <d>(bun rm)<r>
+ \\> unlink<r> Globally unlink an npm package
+ \\> pm<r> More commands for managing packages
\\
- \\> <r> <b><green>dev <r><d> ./a.ts ./b.jsx<r> Start a bun (frontend) Dev Server
- \\> <r> <b><magenta>bun <r><d> ./a.ts ./b.jsx<r> Bundle dependencies of input files into a <r><magenta>.bun<r>
+ \\> <b><green>dev<r> <d>./a.ts ./b.jsx<r> Start a bun (frontend) Dev Server
\\
- \\> <r> <b><blue>upgrade <r> Get the latest version of bun
- \\> <r> <b><d>completions<r> Install shell completions for tab-completion
- \\> <r> <b><d>discord <r> Open bun's Discord server
- \\> <r> <b><d>help <r> Print this help menu
+ \\> <b><blue>upgrade<r> Get the latest version of bun
+ \\> <b><d>completions<r> Install shell completions for tab-completion
+ \\> <b><d>discord<r> Open bun's Discord server
+ \\> <b><d>help<r> Print this help menu
\\
;
@@ -882,6 +873,7 @@ pub const Command = struct {
package_bundle_map: bun.StringArrayHashMapUnmanaged(options.BundlePackage) = bun.StringArrayHashMapUnmanaged(options.BundlePackage){},
test_directory: []const u8 = "",
+ output_file: []const u8 = "",
};
pub const HotReload = enum {
@@ -906,10 +898,19 @@ pub const Command = struct {
debug: DebugOptions = DebugOptions{},
test_options: TestOptions = TestOptions{},
+ bundler_options: BundlerOptions = BundlerOptions{},
preloads: []const string = &[_]string{},
has_loaded_global_config: bool = false,
+ pub const BundlerOptions = struct {
+ outdir: []const u8 = "",
+ outfile: []const u8 = "",
+ entry_names: []const u8 = "./[name].[ext]",
+ react_server_components: bool = false,
+ code_splitting: bool = false,
+ };
+
const _ctx = Command.Context{
.args = std.mem.zeroes(Api.TransformOptions),
.log = undefined,
@@ -976,7 +977,7 @@ pub const Command = struct {
return switch (RootCommandMatcher.match(first_arg_name)) {
RootCommandMatcher.case("init") => .InitCommand,
- RootCommandMatcher.case("bun") => .BunCommand,
+ RootCommandMatcher.case("build"), RootCommandMatcher.case("bun") => .BuildCommand,
RootCommandMatcher.case("discord") => .DiscordCommand,
RootCommandMatcher.case("upgrade") => .UpgradeCommand,
RootCommandMatcher.case("completions") => .InstallCompletionsCommand,
@@ -1004,7 +1005,6 @@ pub const Command = struct {
RootCommandMatcher.case("add"), RootCommandMatcher.case("update"), RootCommandMatcher.case("a") => .AddCommand,
RootCommandMatcher.case("r"), RootCommandMatcher.case("remove"), RootCommandMatcher.case("rm"), RootCommandMatcher.case("uninstall") => .RemoveCommand,
- RootCommandMatcher.case("b"), RootCommandMatcher.case("build") => .BuildCommand,
RootCommandMatcher.case("run") => .RunCommand,
RootCommandMatcher.case("d"), RootCommandMatcher.case("dev") => .DevCommand,
@@ -1037,84 +1037,130 @@ pub const Command = struct {
};
pub fn start(allocator: std.mem.Allocator, log: *logger.Log) !void {
+ const BuildCommand = @import("./cli/build_command.zig").BuildCommand;
+
+ const AddCommand = @import("./cli/add_command.zig").AddCommand;
+ const CreateCommand = @import("./cli/create_command.zig").CreateCommand;
+ const CreateListExamplesCommand = @import("./cli/create_command.zig").CreateListExamplesCommand;
+ const DevCommand = @import("./cli/dev_command.zig").DevCommand;
+ const DiscordCommand = @import("./cli/discord_command.zig").DiscordCommand;
+ const InstallCommand = @import("./cli/install_command.zig").InstallCommand;
+ const LinkCommand = @import("./cli/link_command.zig").LinkCommand;
+ const UnlinkCommand = @import("./cli/unlink_command.zig").UnlinkCommand;
+ const InstallCompletionsCommand = @import("./cli/install_completions_command.zig").InstallCompletionsCommand;
+ const PackageManagerCommand = @import("./cli/package_manager_command.zig").PackageManagerCommand;
+ const RemoveCommand = @import("./cli/remove_command.zig").RemoveCommand;
+ const RunCommand = @import("./cli/run_command.zig").RunCommand;
+ const ShellCompletions = @import("./cli/shell_completions.zig");
+
+ const UpgradeCommand = @import("./cli/upgrade_command.zig").UpgradeCommand;
+ const BunxCommand = @import("./cli/bunx_command.zig").BunxCommand;
+
+ if (comptime bun.fast_debug_build_mode) {
+ // _ = AddCommand;
+ // _ = BuildCommand;
+ // _ = CreateCommand;
+ _ = CreateListExamplesCommand;
+ // _ = DevCommand;
+ _ = DiscordCommand;
+ // _ = InstallCommand;
+ // _ = LinkCommand;
+ // _ = UnlinkCommand;
+ // _ = InstallCompletionsCommand;
+ // _ = PackageManagerCommand;
+ // _ = RemoveCommand;
+ // _ = RunCommand;
+ // _ = ShellCompletions;
+ // _ = TestCommand;
+ // _ = UpgradeCommand;
+ // _ = BunxCommand;
+ }
+
const tag = which();
switch (tag) {
- .DiscordCommand => return try DiscordCommand.exec(allocator),
- .HelpCommand => return try HelpCommand.exec(allocator),
- .InitCommand => return try InitCommand.exec(allocator, std.os.argv),
+ // .DiscordCommand => return try DiscordCommand.exec(allocator),
+ // .HelpCommand => return try HelpCommand.exec(allocator),
+ // .InitCommand => return try InitCommand.exec(allocator, std.os.argv),
else => {},
}
switch (tag) {
- .BunCommand => {
- const ctx = try Command.Context.create(allocator, log, .BunCommand);
+ .BuildCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .BuildCommand) unreachable;
+ const ctx = try Command.Context.create(allocator, log, .BuildCommand);
- try BunCommand.exec(ctx);
+ try BuildCommand.exec(ctx);
},
.DevCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .DevCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .DevCommand);
try DevCommand.exec(ctx);
},
- .BuildCommand => {
- const ctx = try Command.Context.create(allocator, log, .BuildCommand);
-
- try BuildCommand.exec(ctx);
- },
.InstallCompletionsCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .InstallCompletionsCommand) unreachable;
try InstallCompletionsCommand.exec(allocator);
return;
},
.InstallCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .InstallCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .InstallCommand);
try InstallCommand.exec(ctx);
return;
},
.AddCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .AddCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .AddCommand);
try AddCommand.exec(ctx);
return;
},
.BunxCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .BunxCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .BunxCommand);
try BunxCommand.exec(ctx);
return;
},
.RemoveCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .RemoveCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .RemoveCommand);
try RemoveCommand.exec(ctx);
return;
},
.LinkCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .LinkCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .LinkCommand);
try LinkCommand.exec(ctx);
return;
},
.UnlinkCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .UnlinkCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .UnlinkCommand);
try UnlinkCommand.exec(ctx);
return;
},
.PackageManagerCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .PackageManagerCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .PackageManagerCommand);
try PackageManagerCommand.exec(ctx);
return;
},
.TestCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .TestCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .TestCommand);
try TestCommand.exec(ctx);
return;
},
.GetCompletionsCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .GetCompletionsCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .GetCompletionsCommand);
var filter = ctx.positionals;
@@ -1201,6 +1247,7 @@ pub const Command = struct {
return;
},
.CreateCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .CreateCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .CreateCommand);
var positionals: [2]string = undefined;
var positional_i: usize = 0;
@@ -1224,6 +1271,7 @@ pub const Command = struct {
return;
},
.RunCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .RunCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .RunCommand);
if (ctx.positionals.len > 0) {
if (try RunCommand.exec(ctx, false, true)) {
@@ -1234,11 +1282,13 @@ pub const Command = struct {
}
},
.UpgradeCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .UpgradeCommand) unreachable;
const ctx = try Command.Context.create(allocator, log, .UpgradeCommand);
try UpgradeCommand.exec(ctx);
return;
},
.AutoCommand => {
+ if (comptime bun.fast_debug_build_mode and bun.fast_debug_build_cmd != .AutoCommand) unreachable;
var ctx = Command.Context.create(allocator, log, .AutoCommand) catch |e| {
switch (e) {
error.MissingEntryPoint => {
@@ -1434,7 +1484,6 @@ pub const Command = struct {
AddCommand,
AutoCommand,
BuildCommand,
- BunCommand,
BunxCommand,
CreateCommand,
DevCommand,
@@ -1476,8 +1525,7 @@ pub const Command = struct {
pub const cares_about_bun_file: std.EnumArray(Tag, bool) = std.EnumArray(Tag, bool).initDefault(false, .{
.AutoCommand = true,
- .BuildCommand = true,
- .BunCommand = true,
+ .BuildCommand = false,
.DevCommand = true,
.RunCommand = true,
.TestCommand = true,
@@ -1495,7 +1543,6 @@ pub const Command = struct {
};
pub const always_loads_config: std.EnumArray(Tag, bool) = std.EnumArray(Tag, bool).initDefault(false, .{
.BuildCommand = true,
- .BunCommand = true,
.DevCommand = true,
.TestCommand = true,
.InstallCommand = true,