mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
chore(NA): splits types from code on @kbn/storybook (#124199)
* chore(NA): splits types from code on @kbn/storybook * chore(NA): correct export syntax Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
815537afd4
commit
b08b2c9ef8
6 changed files with 31 additions and 8 deletions
|
@ -608,6 +608,7 @@
|
|||
"@types/kbn__server-http-tools": "link:bazel-bin/packages/kbn-server-http-tools/npm_module_types",
|
||||
"@types/kbn__server-route-repository": "link:bazel-bin/packages/kbn-server-route-repository/npm_module_types",
|
||||
"@types/kbn__std": "link:bazel-bin/packages/kbn-std/npm_module_types",
|
||||
"@types/kbn__storybook": "link:bazel-bin/packages/kbn-storybook/npm_module_types",
|
||||
"@types/kbn__telemetry-tools": "link:bazel-bin/packages/kbn-telemetry-tools/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",
|
||||
|
|
|
@ -124,6 +124,7 @@ filegroup(
|
|||
"//packages/kbn-server-http-tools:build_types",
|
||||
"//packages/kbn-server-route-repository:build_types",
|
||||
"//packages/kbn-std:build_types",
|
||||
"//packages/kbn-storybook:build_types",
|
||||
"//packages/kbn-telemetry-tools:build_types",
|
||||
"//packages/kbn-ui-shared-deps-npm:build_types",
|
||||
"//packages/kbn-ui-shared-deps-src:build_types",
|
||||
|
|
|
@ -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-storybook"
|
||||
PKG_REQUIRE_NAME = "@kbn/storybook"
|
||||
TYPES_PKG_REQUIRE_NAME = "@types/kbn__storybook"
|
||||
|
||||
SOURCE_FILES = glob(
|
||||
[
|
||||
|
@ -64,7 +65,6 @@ TYPES_DEPS = [
|
|||
"@npm//@storybook/node-logger",
|
||||
"@npm//@storybook/react",
|
||||
"@npm//@storybook/theming",
|
||||
"@npm//@types/express", # necessary for storybook which is missing the types
|
||||
"@npm//@types/loader-utils",
|
||||
"@npm//@types/node",
|
||||
"@npm//@types/react",
|
||||
|
@ -104,7 +104,7 @@ ts_project(
|
|||
js_library(
|
||||
name = PKG_BASE_NAME,
|
||||
srcs = NPM_MODULE_EXTRA_FILES,
|
||||
deps = RUNTIME_DEPS + [":target_node", ":tsc_types"],
|
||||
deps = RUNTIME_DEPS + [":target_node"],
|
||||
package_name = PKG_REQUIRE_NAME,
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
@ -123,3 +123,21 @@ 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,7 +5,6 @@
|
|||
"private": true,
|
||||
"license": "SSPL-1.0 OR Elastic License 2.0",
|
||||
"main": "./target_node/index.js",
|
||||
"types": "./target_types/index.d.ts",
|
||||
"kibana": {
|
||||
"devOnly": true
|
||||
}
|
||||
|
|
|
@ -68,7 +68,7 @@ function isDesiredPreset(preset: Preset) {
|
|||
|
||||
// Extend the Storybook Webpack config with some customizations
|
||||
/* eslint-disable import/no-default-export */
|
||||
export default function ({ config: storybookConfig }: { config: Configuration }) {
|
||||
export default ({ config: storybookConfig }: { config: Configuration }) => {
|
||||
const config = {
|
||||
devServer: {
|
||||
stats,
|
||||
|
@ -195,4 +195,4 @@ export default function ({ config: storybookConfig }: { config: Configuration })
|
|||
},
|
||||
config
|
||||
);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -6890,6 +6890,10 @@
|
|||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@types/kbn__storybook@link:bazel-bin/packages/kbn-storybook/npm_module_types":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@types/kbn__telemetry-tools@link:bazel-bin/packages/kbn-telemetry-tools/npm_module_types":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue