Create the @kbn/std package (#77329)

* move `src/core/utils` to the @kbn/std package

* update README

* update codeowners and add yarn lock file

* remove export from src/core/public and src/core/server and use package import instead

* update generated doc

* adapt forgotten import

* update `data` plugin doc
This commit is contained in:
Pierre Gayvallet 2020-09-15 15:21:05 +02:00 committed by GitHub
parent cdea019dfc
commit 043ef5e1d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
109 changed files with 138 additions and 715 deletions

View file

@ -4,6 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/
import { RecursiveReadonly } from '@kbn/utility-types';
import { deepFreeze } from '@kbn/std';
import {
CoreSetup,
CoreStart,
@ -12,7 +13,6 @@ import {
PluginInitializerContext,
} from '../../../../src/core/server';
import { Capabilities as UICapabilities } from '../../../../src/core/server';
import { deepFreeze } from '../../../../src/core/server';
import { PluginSetupContract as TimelionSetupContract } from '../../../../src/plugins/vis_type_timelion/server';
import { FeatureRegistry } from './feature_registry';
import { uiCapabilitiesForFeatures } from './ui_capabilities_for_features';