feat: add docs
Some checks failed
CI / test (macos-14, darwin-arm64) (push) Has been cancelled
CI / test (windows-latest, windows) (push) Has been cancelled
CI / test (ubuntu-latest, linux-x64) (push) Has been cancelled
Docs Pages / deploy (push) Has been cancelled

This commit is contained in:
eric
2026-03-04 14:38:30 +01:00
parent beb8a72d0d
commit 63cf0470a6
15 changed files with 321 additions and 26 deletions

18
docs/BUILD.bazel Normal file
View File

@@ -0,0 +1,18 @@
load("@stardoc//stardoc:stardoc.bzl", "stardoc")
package(default_visibility = ["//visibility:public"])
stardoc(
name = "rules_md",
out = "rules.md",
input = "//bun:defs.bzl",
symbol_names = [
"bun_binary",
"bun_bundle",
"bun_dev",
"bun_test",
"js_library",
"ts_library",
],
deps = ["//bun:defs_bzl"],
)