feat: new bun_build and bun_compile, extend bun_install
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
"""Rule for running package.json scripts with Bun."""
|
||||
|
||||
load("//internal:bun_command.bzl", "append_shell_flag", "append_shell_flag_files", "append_shell_flag_value", "append_shell_flag_values", "append_shell_install_mode", "append_shell_raw_flags", "render_shell_array", "shell_quote")
|
||||
load("//internal:workspace.bzl", "create_bun_workspace_info", "render_workspace_setup", "workspace_runfiles")
|
||||
|
||||
def _shell_quote(value):
|
||||
return "'" + value.replace("'", "'\"'\"'") + "'"
|
||||
|
||||
|
||||
def _bun_script_impl(ctx):
|
||||
toolchain = ctx.toolchains["//bun:toolchain_type"]
|
||||
@@ -12,16 +10,39 @@ def _bun_script_impl(ctx):
|
||||
package_json = ctx.file.package_json
|
||||
workspace_info = create_bun_workspace_info(
|
||||
ctx,
|
||||
extra_files = ctx.files.data + [bun_bin],
|
||||
extra_files = ctx.files.data + ctx.files.preload + ctx.files.env_files + [bun_bin],
|
||||
package_dir_hint = package_json.dirname or ".",
|
||||
package_json = package_json,
|
||||
primary_file = package_json,
|
||||
)
|
||||
|
||||
launcher_lines = [render_shell_array("bun_args", ["--bun", "run"])]
|
||||
append_shell_install_mode(launcher_lines, "bun_args", ctx.attr.install_mode)
|
||||
append_shell_flag_files(launcher_lines, "bun_args", "--preload", ctx.files.preload)
|
||||
append_shell_flag_files(launcher_lines, "bun_args", "--env-file", ctx.files.env_files)
|
||||
append_shell_flag(launcher_lines, "bun_args", "--no-env-file", ctx.attr.no_env_file)
|
||||
append_shell_flag(launcher_lines, "bun_args", "--smol", ctx.attr.smol)
|
||||
append_shell_flag_values(launcher_lines, "bun_args", "--conditions", ctx.attr.conditions)
|
||||
append_shell_flag(launcher_lines, "bun_args", "--workspaces", ctx.attr.workspaces)
|
||||
append_shell_flag_values(launcher_lines, "bun_args", "--filter", ctx.attr.filters)
|
||||
if ctx.attr.execution_mode == "parallel":
|
||||
append_shell_flag(launcher_lines, "bun_args", "--parallel", True)
|
||||
elif ctx.attr.execution_mode == "sequential":
|
||||
append_shell_flag(launcher_lines, "bun_args", "--sequential", True)
|
||||
append_shell_flag(launcher_lines, "bun_args", "--no-exit-on-error", ctx.attr.no_exit_on_error)
|
||||
append_shell_flag_value(launcher_lines, "bun_args", "--shell", ctx.attr.shell)
|
||||
append_shell_flag(launcher_lines, "bun_args", "--silent", ctx.attr.silent)
|
||||
append_shell_raw_flags(launcher_lines, "bun_args", ctx.attr.run_flags)
|
||||
launcher_lines.append('bun_args+=(%s)' % shell_quote(ctx.attr.script))
|
||||
for arg in ctx.attr.args:
|
||||
launcher_lines.append("bun_args+=(%s)" % shell_quote(arg))
|
||||
|
||||
command = """
|
||||
trap cleanup_runtime_workspace EXIT
|
||||
cd "${runtime_exec_dir}"
|
||||
exec "${bun_bin}" --bun run __SCRIPT__ "$@"
|
||||
""".replace("__SCRIPT__", _shell_quote(ctx.attr.script))
|
||||
__BUN_ARGS__
|
||||
exec "${bun_bin}" "${bun_args[@]}" "$@"
|
||||
""".replace("__BUN_ARGS__", "\n".join(launcher_lines))
|
||||
|
||||
launcher = ctx.actions.declare_file(ctx.label.name)
|
||||
ctx.actions.write(
|
||||
@@ -72,6 +93,58 @@ declared in `package.json` and expect to run from the package directory with
|
||||
allow_files = True,
|
||||
doc = "Additional runtime files required by the script.",
|
||||
),
|
||||
"preload": attr.label_list(
|
||||
allow_files = True,
|
||||
doc = "Modules to preload with `--preload` before running the script.",
|
||||
),
|
||||
"env_files": attr.label_list(
|
||||
allow_files = True,
|
||||
doc = "Additional environment files loaded with `--env-file`.",
|
||||
),
|
||||
"no_env_file": attr.bool(
|
||||
default = False,
|
||||
doc = "If true, disables Bun's automatic `.env` loading.",
|
||||
),
|
||||
"smol": attr.bool(
|
||||
default = False,
|
||||
doc = "If true, enables Bun's lower-memory runtime mode.",
|
||||
),
|
||||
"conditions": attr.string_list(
|
||||
doc = "Custom package resolve conditions passed to Bun.",
|
||||
),
|
||||
"install_mode": attr.string(
|
||||
default = "disable",
|
||||
values = ["disable", "auto", "fallback", "force"],
|
||||
doc = "Whether Bun may auto-install missing packages while running the script.",
|
||||
),
|
||||
"filters": attr.string_list(
|
||||
doc = "Workspace package filters passed via repeated `--filter` flags.",
|
||||
),
|
||||
"workspaces": attr.bool(
|
||||
default = False,
|
||||
doc = "If true, runs the script in all workspace packages.",
|
||||
),
|
||||
"execution_mode": attr.string(
|
||||
default = "single",
|
||||
values = ["single", "parallel", "sequential"],
|
||||
doc = "How Bun should execute matching workspace scripts.",
|
||||
),
|
||||
"no_exit_on_error": attr.bool(
|
||||
default = False,
|
||||
doc = "If true, Bun keeps running other workspace scripts when one fails.",
|
||||
),
|
||||
"shell": attr.string(
|
||||
default = "",
|
||||
values = ["", "bun", "system"],
|
||||
doc = "Optional shell implementation for package scripts.",
|
||||
),
|
||||
"silent": attr.bool(
|
||||
default = False,
|
||||
doc = "If true, suppresses Bun's command echo for package scripts.",
|
||||
),
|
||||
"run_flags": attr.string_list(
|
||||
doc = "Additional raw flags forwarded to `bun run` before the script name.",
|
||||
),
|
||||
"working_dir": attr.string(
|
||||
default = "package",
|
||||
values = ["workspace", "package"],
|
||||
|
||||
Reference in New Issue
Block a user