Skip to content

Commit 26a94eb

Browse files
committed
build(bazel): swc_plugin_proxy
1 parent 1f91920 commit 26a94eb

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

crates/swc_plugin_proxy/BUILD.bazel

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
load("@swc_cargo_workspace_index//:defs.bzl", "crate_deps")
2+
load("@rules_rust//rust:defs.bzl", "rust_library")
3+
4+
package(default_visibility = ["//visibility:public"])
5+
6+
rust_library(
7+
name = "swc_plugin_proxy",
8+
srcs = glob(["src/**/*.rs"]),
9+
proc_macro_deps = [
10+
"//crates/swc_trace_macro",
11+
],
12+
deps = [
13+
"//crates/swc_common:swc_common_concurrent",
14+
"//crates/swc_ecma_ast",
15+
"//crates/better_scoped_tls",
16+
] + crate_deps([
17+
"tracing",
18+
]),
19+
)

0 commit comments

Comments
 (0)