forked from decentraland/kernel-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
40 lines (35 loc) · 761 Bytes
/
BUILD
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
package(default_visibility = ["//visibility:public"])
load("@build_bazel_rules_nodejs//:index.bzl", "nodejs_binary")
exports_files(
[
"tsconfig.json",
"package.json",
"tslib.package.json",
"common.package.json",
],
visibility = ["//visibility:public"],
)
filegroup(
name = "global-tsconfig",
srcs = ["tsconfig.json"],
)
filegroup(
name = "node_modules",
srcs = glob(
include = ["node_modules/**/*"],
exclude = [
"node_modules/test/**",
"node_modules/docs/**",
"node_modules/**/* */**",
"node_modules/**/* *",
],
),
)
filegroup(
name = "secrets",
srcs = glob(
include = [
".secret"
],
),
)