Skip to content

Commit

Permalink
chore(NA): missing standard on build file globs
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Apr 5, 2021
1 parent 20cd771 commit c4a5c60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/elastic-datemath/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm")
PKG_BASE_NAME = "elastic-datemath"
PKG_REQUIRE_NAME = "@elastic/datemath"

SOURCE_FILES = [
SOURCE_FILES = glob([
"src/index.ts",
]
])

SRCS = SOURCE_FILES

filegroup(
name = "srcs",
srcs = glob(SOURCE_FILES),
srcs = SRCS,
)

NPM_MODULE_EXTRA_FILES = [
Expand Down
6 changes: 3 additions & 3 deletions packages/kbn-apm-utils/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm")
PKG_BASE_NAME = "kbn-apm-utils"
PKG_REQUIRE_NAME = "@kbn/apm-utils"

SOURCE_FILES = [
SOURCE_FILES = glob([
"src/index.ts",
]
])

SRCS = SOURCE_FILES

filegroup(
name = "srcs",
srcs = glob(SOURCE_FILES),
srcs = SRCS,
)

NPM_MODULE_EXTRA_FILES = [
Expand Down

0 comments on commit c4a5c60

Please sign in to comment.