Skip to content

Commit

Permalink
chore(NA): use internal pkg_npm on @kbn/ui-framework (#121922)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic authored Dec 23, 2021
1 parent 1ded9b9 commit cc0384d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/kbn-ui-framework/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm")
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
load("//src/dev/bazel:index.bzl", "pkg_npm")

PKG_BASE_NAME = "kbn-ui-framework"
PKG_REQUIRE_NAME = "@kbn/ui-framework"
Expand All @@ -19,14 +20,14 @@ NPM_MODULE_EXTRA_FILES = [
"README.md",
]

DEPS = []
RUNTIME_DEPS = []

js_library(
name = PKG_BASE_NAME,
srcs = NPM_MODULE_EXTRA_FILES + [
":srcs",
],
deps = DEPS,
deps = RUNTIME_DEPS,
package_name = PKG_REQUIRE_NAME,
visibility = ["//visibility:public"],
)
Expand Down

0 comments on commit cc0384d

Please sign in to comment.