chore(NA): splits types from code on @kbn/typed-react-router-config (#124944)

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Tiago Costa 2022-02-08 20:58:01 +00:00 committed by GitHub
parent 1f3b7f405e
commit 1af9629c58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 38 additions and 8 deletions

View file

@ -618,6 +618,7 @@
"@types/kbn__telemetry-tools": "link:bazel-bin/packages/kbn-telemetry-tools/npm_module_types", "@types/kbn__telemetry-tools": "link:bazel-bin/packages/kbn-telemetry-tools/npm_module_types",
"@types/kbn__test": "link:bazel-bin/packages/kbn-test/npm_module_types", "@types/kbn__test": "link:bazel-bin/packages/kbn-test/npm_module_types",
"@types/kbn__test-jest-helpers": "link:bazel-bin/packages/kbn-test-jest-helpers/npm_module_types", "@types/kbn__test-jest-helpers": "link:bazel-bin/packages/kbn-test-jest-helpers/npm_module_types",
"@types/kbn__typed-react-router-config": "link:bazel-bin/packages/kbn-typed-react-router-config/npm_module_types",
"@types/kbn__ui-shared-deps-npm": "link:bazel-bin/packages/kbn-ui-shared-deps-npm/npm_module_types", "@types/kbn__ui-shared-deps-npm": "link:bazel-bin/packages/kbn-ui-shared-deps-npm/npm_module_types",
"@types/kbn__ui-shared-deps-src": "link:bazel-bin/packages/kbn-ui-shared-deps-src/npm_module_types", "@types/kbn__ui-shared-deps-src": "link:bazel-bin/packages/kbn-ui-shared-deps-src/npm_module_types",
"@types/kbn__ui-theme": "link:bazel-bin/packages/kbn-ui-theme/npm_module_types", "@types/kbn__ui-theme": "link:bazel-bin/packages/kbn-ui-theme/npm_module_types",

View file

@ -132,6 +132,7 @@ filegroup(
"//packages/kbn-telemetry-tools:build_types", "//packages/kbn-telemetry-tools:build_types",
"//packages/kbn-test:build_types", "//packages/kbn-test:build_types",
"//packages/kbn-test-jest-helpers:build_types", "//packages/kbn-test-jest-helpers:build_types",
"//packages/kbn-typed-react-router-config:build_types",
"//packages/kbn-ui-shared-deps-npm:build_types", "//packages/kbn-ui-shared-deps-npm:build_types",
"//packages/kbn-ui-shared-deps-src:build_types", "//packages/kbn-ui-shared-deps-src:build_types",
"//packages/kbn-ui-theme:build_types", "//packages/kbn-ui-theme:build_types",

View file

@ -1,9 +1,10 @@
load("@npm//@bazel/typescript:index.bzl", "ts_config", "ts_project") load("@npm//@bazel/typescript:index.bzl", "ts_config")
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", "jsts_transpiler") load("//src/dev/bazel:index.bzl", "jsts_transpiler", "pkg_npm", "pkg_npm_types", "ts_project")
PKG_BASE_NAME = "kbn-typed-react-router-config" PKG_BASE_NAME = "kbn-typed-react-router-config"
PKG_REQUIRE_NAME = "@kbn/typed-react-router-config" PKG_REQUIRE_NAME = "@kbn/typed-react-router-config"
TYPES_PKG_REQUIRE_NAME = "@types/kbn__typed-react-router-config"
SOURCE_FILES = glob( SOURCE_FILES = glob(
[ [
@ -28,23 +29,30 @@ NPM_MODULE_EXTRA_FILES = [
RUNTIME_DEPS = [ RUNTIME_DEPS = [
"//packages/kbn-io-ts-utils", "//packages/kbn-io-ts-utils",
"@npm//tslib", "@npm//fp-ts",
"@npm//utility-types", "@npm//history",
"@npm//io-ts", "@npm//io-ts",
"@npm//lodash",
"@npm//query-string", "@npm//query-string",
"@npm//react",
"@npm//react-router-config", "@npm//react-router-config",
"@npm//react-router-dom", "@npm//react-router-dom",
"@npm//tslib",
"@npm//utility-types",
] ]
TYPES_DEPS = [ TYPES_DEPS = [
"//packages/kbn-io-ts-utils:npm_module_types", "//packages/kbn-io-ts-utils:npm_module_types",
"@npm//fp-ts",
"@npm//query-string", "@npm//query-string",
"@npm//utility-types", "@npm//utility-types",
"@npm//@types/history",
"@npm//@types/jest", "@npm//@types/jest",
"@npm//@types/lodash",
"@npm//@types/node", "@npm//@types/node",
"@npm//@types/react",
"@npm//@types/react-router-config", "@npm//@types/react-router-config",
"@npm//@types/react-router-dom", "@npm//@types/react-router-dom",
"@npm//@types/history",
] ]
jsts_transpiler( jsts_transpiler(
@ -86,7 +94,7 @@ ts_project(
js_library( js_library(
name = PKG_BASE_NAME, name = PKG_BASE_NAME,
srcs = NPM_MODULE_EXTRA_FILES, 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, package_name = PKG_REQUIRE_NAME,
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
@ -105,3 +113,20 @@ filegroup(
], ],
visibility = ["//visibility:public"], 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"],
)

View file

@ -1,7 +1,6 @@
{ {
"name": "@kbn/typed-react-router-config", "name": "@kbn/typed-react-router-config",
"main": "target_node/index.js", "main": "target_node/index.js",
"types": "target_types/index.d.ts",
"browser": "target_web/index.js", "browser": "target_web/index.js",
"version": "1.0.0", "version": "1.0.0",
"license": "SSPL-1.0 OR Elastic License 2.0", "license": "SSPL-1.0 OR Elastic License 2.0",

View file

@ -6929,6 +6929,10 @@
version "0.0.0" version "0.0.0"
uid "" uid ""
"@types/kbn__typed-react-router-config@link:bazel-bin/packages/kbn-typed-react-router-config/npm_module_types":
version "0.0.0"
uid ""
"@types/kbn__ui-shared-deps-npm@link:bazel-bin/packages/kbn-ui-shared-deps-npm/npm_module_types": "@types/kbn__ui-shared-deps-npm@link:bazel-bin/packages/kbn-ui-shared-deps-npm/npm_module_types":
version "0.0.0" version "0.0.0"
uid "" uid ""