Skip to content

Commit

Permalink
[Move @kbn/config-schema to server] @kbn/config (#189525)
Browse files Browse the repository at this point in the history
  • Loading branch information
afharo authored Jul 30, 2024
1 parent 89f703f commit 3c9b2f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/base/core-base-common/src/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Side Public License, v 1.
*/

import { ConfigPath } from '@kbn/config';
import type { ConfigPath } from '@kbn/config';

/**
* Dedicated type for plugin name/id that is supposed to make Map/Set/Arrays
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-config/kibana.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/config",
"owner": "@elastic/kibana-core"
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import coerce from 'semver/functions/coerce';

import { ELASTIC_HTTP_VERSION_HEADER } from '@kbn/core-http-common';
import { BuildFlavor } from '@kbn/config/src/types';
import type { BuildFlavor } from '@kbn/config';
import { i18n } from '@kbn/i18n';
import { EMSClient } from '@elastic/ems-client';
import { EMS_APP_NAME, EMSSettings, DEFAULT_EMS_REST_VERSION } from '../../common';
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/maps_ems/public/lazy_load_bundle/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import type { EMSClient } from '@elastic/ems-client';
import { BuildFlavor } from '@kbn/config/src/types';
import type { BuildFlavor } from '@kbn/config';
import type { EMSSettings } from '../../common';

let lazyLoaded: (emsSettings: EMSSettings, version: string, buildFlavor: BuildFlavor) => EMSClient;
Expand Down

0 comments on commit 3c9b2f4

Please sign in to comment.