forked from aspect-build/rules_js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
38 lines (30 loc) · 856 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
load("@aspect_bazel_lib//lib:docs.bzl", "stardoc_with_diff_test", "update_docs")
stardoc_with_diff_test(
name = "js_binary",
bzl_library_target = "//js/private:js_binary",
)
stardoc_with_diff_test(
name = "js_library",
bzl_library_target = "//js/private:js_library",
)
stardoc_with_diff_test(
name = "js_run_binary",
bzl_library_target = "//js/private:js_run_binary",
)
stardoc_with_diff_test(
name = "js_filegroup",
bzl_library_target = "//js/private:js_filegroup",
)
stardoc_with_diff_test(
name = "npm_package",
bzl_library_target = "//npm/private:npm_package",
)
stardoc_with_diff_test(
name = "npm_link_package",
bzl_library_target = "//npm/private:npm_link_package",
)
stardoc_with_diff_test(
name = "npm_import",
bzl_library_target = "//npm:npm_import",
)
update_docs(name = "update")