Skip to content

Commit c4a5c60

Browse files
committed
chore(NA): missing standard on build file globs
1 parent 20cd771 commit c4a5c60

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

packages/elastic-datemath/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm")
44
PKG_BASE_NAME = "elastic-datemath"
55
PKG_REQUIRE_NAME = "@elastic/datemath"
66

7-
SOURCE_FILES = [
7+
SOURCE_FILES = glob([
88
"src/index.ts",
9-
]
9+
])
1010

1111
SRCS = SOURCE_FILES
1212

1313
filegroup(
1414
name = "srcs",
15-
srcs = glob(SOURCE_FILES),
15+
srcs = SRCS,
1616
)
1717

1818
NPM_MODULE_EXTRA_FILES = [

packages/kbn-apm-utils/BUILD.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm")
44
PKG_BASE_NAME = "kbn-apm-utils"
55
PKG_REQUIRE_NAME = "@kbn/apm-utils"
66

7-
SOURCE_FILES = [
7+
SOURCE_FILES = glob([
88
"src/index.ts",
9-
]
9+
])
1010

1111
SRCS = SOURCE_FILES
1212

1313
filegroup(
1414
name = "srcs",
15-
srcs = glob(SOURCE_FILES),
15+
srcs = SRCS,
1616
)
1717

1818
NPM_MODULE_EXTRA_FILES = [

0 commit comments

Comments
 (0)