From 1c695c64eb14090d09da62f90d438b2395e4dd7c Mon Sep 17 00:00:00 2001 From: Christiane Heiligers Date: Fri, 8 Jul 2022 19:20:19 -0700 Subject: [PATCH] Cleans up bazel build file --- .../core-preboot-server-internal/BUILD.bazel | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/packages/core/preboot/core-preboot-server-internal/BUILD.bazel b/packages/core/preboot/core-preboot-server-internal/BUILD.bazel index 5e8b4cba592c5..04d99ac806ddc 100644 --- a/packages/core/preboot/core-preboot-server-internal/BUILD.bazel +++ b/packages/core/preboot/core-preboot-server-internal/BUILD.bazel @@ -26,16 +26,6 @@ NPM_MODULE_EXTRA_FILES = [ "package.json", ] -# In this array place runtime dependencies, including other packages and NPM packages -# which must be available for this code to run. -# -# To reference other packages use: -# "//repo/relative/path/to/package" -# eg. "//packages/kbn-utils" -# -# To reference a NPM package use: -# "@npm//name-of-package" -# eg. "@npm//lodash" RUNTIME_DEPS = [ "//packages/core/logging/core-logging-server-mocks", "//packages/core/base/core-base-common", @@ -45,15 +35,6 @@ RUNTIME_DEPS = [ "//packages/kbn-utils" ] -# In this array place dependencies necessary to build the types, which will include the -# :npm_module_types target of other packages and packages from NPM, including @types/* -# packages. -# -# To reference the types for another package use: -# "//repo/relative/path/to/package:npm_module_types" -# eg. "//packages/kbn-utils:npm_module_types" -# -# References to NPM packages work the same as RUNTIME_DEPS TYPES_DEPS = [ "@npm//@types/node", "@npm//@types/jest",