kibana/packages
2021-08-02 15:31:20 +02:00
..
elastic-datemath chore(NA): moving @elastic/datemath to babel transpiler (#106860) 2021-07-27 16:44:36 -04:00
elastic-eslint-config-kibana chore(NA): moving @kbn/es-query to babel transpiler (#107281) 2021-07-30 18:38:02 +01:00
elastic-safer-lodash-set
kbn-ace chore(NA): moving @kbn/ace to babel transpiler (#106922) 2021-07-28 18:12:42 +01:00
kbn-analytics [Telemetry] application usage views: allow tracking on any component and fix unmounting issues (#106507) 2021-07-26 15:03:49 -04:00
kbn-apm-config-loader chore(NA): moving @kbn/apm-config-loader to babel transpiler (#107146) 2021-07-29 14:24:12 -04:00
kbn-apm-utils chore(NA): moving @kbn/apm-utils to babel transpiler (#106989) 2021-07-28 19:12:22 -04:00
kbn-babel-code-parser fix(NA): windows ts_project outside sandbox compilation (#100947) 2021-06-03 17:53:39 +01:00
kbn-babel-preset chore(NA): moving @kbn/es-query to babel transpiler (#107281) 2021-07-30 18:38:02 +01:00
kbn-cli-dev-mode chore(NA): moving @kbn/dev-utils to babel transpiler (#107245) 2021-07-30 16:03:42 -04:00
kbn-common-utils chore(NA): moving @kbn/common-utils to babel transpiler (#107148) 2021-07-29 17:04:08 +01:00
kbn-config
kbn-config-schema chore(NA): moving @kbn/config-schema to babel transpiler (#106929) 2021-07-28 16:30:47 -04:00
kbn-crypto chore(NA): moving @kbn/dev-utils to babel transpiler (#107245) 2021-07-30 16:03:42 -04:00
kbn-dev-utils chore(NA): moving @kbn/dev-utils to babel transpiler (#107245) 2021-07-30 16:03:42 -04:00
kbn-docs-utils Improve deprecated API list, and update api docs (#106942) 2021-07-28 12:44:17 -04:00
kbn-es
kbn-es-archiver
kbn-es-query [Data] Cleanup filter docs (#107169) 2021-08-02 12:14:19 +02:00
kbn-eslint-import-resolver-kibana
kbn-eslint-plugin-eslint
kbn-expect
kbn-field-types [data] Extract @kbn/field-types to a package (#106973) 2021-07-30 06:34:17 -04:00
kbn-i18n
kbn-interpreter
kbn-io-ts-utils
kbn-legacy-logging
kbn-logging
kbn-mapbox-gl
kbn-monaco
kbn-optimizer [data][bfetch] Avoid using Buffer in client code (#107278) 2021-08-02 15:31:20 +02:00
kbn-plugin-generator
kbn-plugin-helpers
kbn-pm chore(NA): moving @kbn/dev-utils to babel transpiler (#107245) 2021-07-30 16:03:42 -04:00
kbn-rule-data-utils [Timeline][RBAC] - Add RBAC logic to timeline alerts search strategy (#105333) 2021-07-28 01:36:54 -04:00
kbn-securitysolution-autocomplete [Security Solutions] Removes deprecated types in kbn-securitysolution-* for newer kbn-es-query types (#106801) 2021-07-27 09:12:02 -06:00
kbn-securitysolution-es-utils
kbn-securitysolution-hook-utils
kbn-securitysolution-io-ts-alerting-types
kbn-securitysolution-io-ts-list-types Remove duplicate license comments (#106848) 2021-07-28 08:42:21 -06:00
kbn-securitysolution-io-ts-types
kbn-securitysolution-io-ts-utils
kbn-securitysolution-list-api
kbn-securitysolution-list-constants
kbn-securitysolution-list-hooks
kbn-securitysolution-list-utils [Security Solutions] Removes deprecated types in kbn-securitysolution-* for newer kbn-es-query types (#106801) 2021-07-27 09:12:02 -06:00
kbn-securitysolution-t-grid
kbn-securitysolution-utils
kbn-server-http-tools chore(NA): moving @kbn/dev-utils to babel transpiler (#107245) 2021-07-30 16:03:42 -04:00
kbn-server-route-repository
kbn-spec-to-console
kbn-std chore(NA): moving @kbn/std to babel transpiler (#107177) 2021-07-29 18:26:08 +01:00
kbn-storybook
kbn-telemetry-tools chore(NA): moving @kbn/dev-utils to babel transpiler (#107245) 2021-07-30 16:03:42 -04:00
kbn-test chore(NA): moving @kbn/dev-utils to babel transpiler (#107245) 2021-07-30 16:03:42 -04:00
kbn-test-subj-selector
kbn-tinymath
kbn-typed-react-router-config
kbn-ui-framework
kbn-ui-shared-deps chore(NA): improves @kbn/ui-shared-deps build performance (#105971) 2021-07-21 21:00:49 +01:00
kbn-utility-types chore(NA): moving @kbn/utility-types to babel transpiler (#107159) 2021-07-30 18:43:50 +01:00
kbn-utils chore(NA): moving @kbn/utils to babel transpiler (#107010) 2021-07-29 01:16:53 +01:00
BUILD.bazel [data] Extract @kbn/field-types to a package (#106973) 2021-07-30 06:34:17 -04:00
README.md

Kibana-related packages

This folder contains packages that are intended for use in Kibana and Kibana plugins.

tl;dr:

  • Don't publish to npm registry
  • Always use the @kbn namespace
  • Always set "private": true in package.json

Using these packages

We no longer publish these packages to the npm registry. Now, instead of specifying a version when including these packages, we rely on yarn workspaces, which sets up a symlink to the package.

For example if you want to use the @kbn/i18n package in Kibana itself, you can specify the dependency like this:

"@kbn/i18n": "1.0.0"

However, if you want to use this from a Kibana plugin, you need to use a link: dependency and account for the relative location of the Kibana repo, so it would instead be:

"@kbn/i18n": "link:../../kibana/packages/kbn-i18n"

How all of this works is described in more detail in the @kbn/pm docs.

Creating a new package

Create a new sub-folder. The name of the folder should mirror the name in the package's package.json. E.g. if the name is @kbn/i18n the folder name should be kbn-i18n.

All new packages should use the @kbn namespace, and should be marked with "private": true.

Unit tests for a package

Currently there is only one tool being used in order to test packages which is Jest. Below we will explain how it should be done.

Jest

A package should follow the pattern of having .test.js files as siblings of the source code files, and these run by Jest.

A package using the .test.js naming convention will have those tests automatically picked up by Jest and run by the unit test runner, currently mapped to the Kibana test script in the root package.json.

  • yarn test or yarn grunt test runs all unit tests.
  • yarn jest runs all Jest tests in Kibana.

In order for the plugin or package to use Jest, a jest.config.js file must be present in it's root. However, there are safeguards for this in CI should a test file be added without a corresponding config file.


Each package can also specify its own test script in the package's package.json, for cases where you'd prefer to run the tests from the local package directory.