-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathBUILD.bazel
More file actions
42 lines (36 loc) · 823 Bytes
/
BUILD.bazel
File metadata and controls
42 lines (36 loc) · 823 Bytes
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
39
40
41
42
load("//tools:defaults.bzl", "js_binary")
package(default_visibility = ["//visibility:public"])
platform(
name = "windows_x64",
constraint_values = [
"@platforms//os:windows",
"@platforms//cpu:x86_64",
],
)
exports_files([
"package_json_release_filter.jq",
])
js_binary(
name = "ng_cli_schema",
data = [
"ng_cli_schema_generator.js",
],
entry_point = "ng_cli_schema_generator.js",
)
js_binary(
name = "quicktype_runner",
data = [
"quicktype_runner.js",
"//:node_modules/quicktype-core",
],
entry_point = "quicktype_runner.js",
)
js_binary(
name = "ng_example_db",
data = [
"process_examples.mjs",
"//:node_modules/marked",
"//:node_modules/zod",
],
entry_point = "process_examples.mjs",
)