mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
chore(NA): splits types from code on @kbn/securitysolution-io-ts-list-types (#121672)
This commit is contained in:
parent
8525d36e52
commit
e203be1613
9 changed files with 34 additions and 9 deletions
|
@ -586,6 +586,7 @@
|
|||
"@types/kbn__securitysolution-es-utils": "link:bazel-bin/packages/kbn-securitysolution-es-utils/npm_module_types",
|
||||
"@types/kbn__securitysolution-hook-utils": "link:bazel-bin/packages/kbn-securitysolution-hook-utils/npm_module_types",
|
||||
"@types/kbn__securitysolution-io-ts-alerting-types": "link:bazel-bin/packages/kbn-securitysolution-io-ts-alerting-types/npm_module_types",
|
||||
"@types/kbn__securitysolution-io-ts-list-types": "link:bazel-bin/packages/kbn-securitysolution-io-ts-list-types/npm_module_types",
|
||||
"@types/license-checker": "15.0.0",
|
||||
"@types/listr": "^0.14.0",
|
||||
"@types/loader-utils": "^1.1.3",
|
||||
|
|
|
@ -104,6 +104,7 @@ filegroup(
|
|||
"//packages/kbn-securitysolution-es-utils:build_types",
|
||||
"//packages/kbn-securitysolution-hook-utils:build_types",
|
||||
"//packages/kbn-securitysolution-io-ts-alerting-types:build_types",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types:build_types",
|
||||
],
|
||||
)
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ TYPES_DEPS = [
|
|||
"//packages/kbn-i18n:npm_module_types",
|
||||
"//packages/kbn-securitysolution-list-hooks",
|
||||
"//packages/kbn-securitysolution-list-utils",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types:npm_module_types",
|
||||
"@npm//@elastic/eui",
|
||||
"@npm//@testing-library/react",
|
||||
"@npm//@testing-library/react-hooks",
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
load("@npm//@bazel/typescript:index.bzl", "ts_config", "ts_project")
|
||||
load("@build_bazel_rules_nodejs//:index.bzl", "js_library", "pkg_npm")
|
||||
load("//src/dev/bazel:index.bzl", "jsts_transpiler")
|
||||
load("@npm//@bazel/typescript:index.bzl", "ts_config")
|
||||
load("@build_bazel_rules_nodejs//:index.bzl", "js_library")
|
||||
load("//src/dev/bazel:index.bzl", "jsts_transpiler", "pkg_npm", "pkg_npm_types", "ts_project")
|
||||
|
||||
PKG_BASE_NAME = "kbn-securitysolution-io-ts-list-types"
|
||||
PKG_REQUIRE_NAME = "@kbn/securitysolution-io-ts-list-types"
|
||||
TYPES_PKG_REQUIRE_NAME = "@types/kbn__securitysolution-io-ts-list-types"
|
||||
|
||||
SOURCE_FILES = glob(
|
||||
[
|
||||
|
@ -82,7 +83,7 @@ ts_project(
|
|||
js_library(
|
||||
name = PKG_BASE_NAME,
|
||||
srcs = NPM_MODULE_EXTRA_FILES,
|
||||
deps = RUNTIME_DEPS + [":target_node", ":target_web", ":tsc_types"],
|
||||
deps = RUNTIME_DEPS + [":target_node", ":target_web"],
|
||||
package_name = PKG_REQUIRE_NAME,
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
@ -101,3 +102,20 @@ filegroup(
|
|||
],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
pkg_npm_types(
|
||||
name = "npm_module_types",
|
||||
srcs = SRCS,
|
||||
deps = [":tsc_types"],
|
||||
package_name = TYPES_PKG_REQUIRE_NAME,
|
||||
tsconfig = ":tsconfig",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
filegroup(
|
||||
name = "build_types",
|
||||
srcs = [
|
||||
":npm_module_types",
|
||||
],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
|
|
@ -5,6 +5,5 @@
|
|||
"license": "SSPL-1.0 OR Elastic License 2.0",
|
||||
"browser": "./target_web/index.js",
|
||||
"main": "./target_node/index.js",
|
||||
"types": "./target_types/index.d.ts",
|
||||
"private": true
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ RUNTIME_DEPS = [
|
|||
]
|
||||
|
||||
TYPES_DEPS = [
|
||||
"//packages/kbn-securitysolution-io-ts-list-types",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types:npm_module_types",
|
||||
"//packages/kbn-securitysolution-io-ts-utils",
|
||||
"//packages/kbn-securitysolution-list-constants",
|
||||
"@npm//fp-ts",
|
||||
|
|
|
@ -41,7 +41,7 @@ RUNTIME_DEPS = [
|
|||
|
||||
TYPES_DEPS = [
|
||||
"//packages/kbn-securitysolution-hook-utils:npm_module_types",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types:npm_module_types",
|
||||
"//packages/kbn-securitysolution-list-api",
|
||||
"//packages/kbn-securitysolution-list-constants",
|
||||
"//packages/kbn-securitysolution-list-utils",
|
||||
|
|
|
@ -32,6 +32,7 @@ RUNTIME_DEPS = [
|
|||
"//packages/kbn-es-query",
|
||||
"//packages/kbn-i18n",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types",
|
||||
"//packages/kbn-securitysolution-io-ts-utils",
|
||||
"//packages/kbn-securitysolution-list-constants",
|
||||
"//packages/kbn-securitysolution-utils",
|
||||
"@npm//lodash",
|
||||
|
@ -40,7 +41,8 @@ RUNTIME_DEPS = [
|
|||
TYPES_DEPS = [
|
||||
"//packages/kbn-es-query:npm_module_types",
|
||||
"//packages/kbn-i18n:npm_module_types",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types",
|
||||
"//packages/kbn-securitysolution-io-ts-list-types:npm_module_types",
|
||||
"//packages/kbn-securitysolution-io-ts-utils",
|
||||
"//packages/kbn-securitysolution-list-constants",
|
||||
"//packages/kbn-securitysolution-utils",
|
||||
"@npm//@elastic/elasticsearch",
|
||||
|
|
|
@ -5908,6 +5908,10 @@
|
|||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@types/kbn__securitysolution-io-ts-list-types@link:bazel-bin/packages/kbn-securitysolution-io-ts-list-types/npm_module_types":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@types/keyv@*":
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/keyv/-/keyv-3.1.1.tgz#e45a45324fca9dab716ab1230ee249c9fb52cfa7"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue