14 lines
216 B
Python
14 lines
216 B
Python
load("//bun:defs.bzl", "bun_bundle")
|
|
|
|
exports_files([
|
|
"BUILD.bazel",
|
|
"entry.ts",
|
|
])
|
|
|
|
bun_bundle(
|
|
name = "sourcemap_bundle",
|
|
tags = ["manual"],
|
|
entry_points = ["entry.ts"],
|
|
sourcemap = True,
|
|
)
|