kibana/packages
2021-07-28 08:42:21 -06:00
..
elastic-datemath chore(NA): moving @elastic/datemath to babel transpiler (#106860) 2021-07-27 16:44:36 -04:00
elastic-eslint-config-kibana Enable CSS-in-JS styling with emotion (#98157) 2021-07-09 13:42:50 -05:00
elastic-safer-lodash-set
kbn-ace
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 [apm-config-loader] refactor config loading (#104197) 2021-07-06 18:00:20 -04:00
kbn-apm-utils
kbn-babel-code-parser
kbn-babel-preset Enable CSS-in-JS styling with emotion (#98157) 2021-07-09 13:42:50 -05:00
kbn-cli-dev-mode
kbn-common-utils
kbn-config Introduce preboot lifecycle stage (#103636) 2021-07-20 06:52:23 +02:00
kbn-config-schema
kbn-crypto Enable CSS-in-JS styling with emotion (#98157) 2021-07-09 13:42:50 -05:00
kbn-dev-utils [kbn/dev-utils] pull in extract() helper (#106277) 2021-07-20 13:13:48 -07:00
kbn-docs-utils
kbn-es [kbn/dev-utils] pull in extract() helper (#106277) 2021-07-20 13:13:48 -07:00
kbn-es-archiver chore(NA): moving @kbn/es-archiver into bazel (#103770) 2021-06-29 23:33:02 -04:00
kbn-es-query [Data][Filters] Move more filter utils to package and cleanup API (#106566) 2021-07-28 13:29:32 +02:00
kbn-eslint-import-resolver-kibana chore(NA): moving @kbn/eslint-import-resolver-kibana into bazel (#98798) 2021-04-30 20:14:18 +01:00
kbn-eslint-plugin-eslint Enable CSS-in-JS styling with emotion (#98157) 2021-07-09 13:42:50 -05:00
kbn-expect
kbn-i18n [Localization] Adds guidelines about markdown and long paragraphs (#104171) 2021-07-01 15:28:48 -04:00
kbn-interpreter
kbn-io-ts-utils [APM] Typed client-side routing (#104274) 2021-07-15 11:30:59 +02:00
kbn-legacy-logging
kbn-logging
kbn-mapbox-gl
kbn-monaco Improve painless validation handling in monaco (#105799) 2021-07-16 08:36:59 -04:00
kbn-optimizer [Canvas] Expression metric (#104390) 2021-07-27 09:05:24 +03:00
kbn-plugin-generator
kbn-plugin-helpers [plugin-helpers] Fix dependency resolution (#104556) 2021-07-07 12:40:58 -05:00
kbn-pm
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 [Security Solutions] Removes the elastic legacy client from lists and security_solution plugins (#106130) 2021-07-20 20:15:40 -04:00
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
kbn-server-route-repository
kbn-spec-to-console [Console] Autocomplete definitions (manual backport) (#105086) 2021-07-13 10:31:50 +02:00
kbn-std
kbn-storybook Enable CSS-in-JS styling with emotion (#98157) 2021-07-09 13:42:50 -05:00
kbn-telemetry-tools Enable CSS-in-JS styling with emotion (#98157) 2021-07-09 13:42:50 -05:00
kbn-test [Exploratory View] Multi Series View (#103855) 2021-07-22 10:14:43 +02:00
kbn-test-subj-selector
kbn-tinymath
kbn-typed-react-router-config [UX] make route match optional in EnvironmentFilter (#105780) 2021-07-16 10:52:40 -04:00
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
kbn-utils [paths] Add default lookup for kibana.yml at /etc/kibana (#103934) 2021-07-08 20:55:18 -04:00
BUILD.bazel [Security Solutions][Detection Engine] Creates an autocomplete package and moves duplicate code between lists and security_solution there (#105382) 2021-07-22 12:44:54 -06: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.