Minimize shared-common everywhere (#188606)

## Summary


![8xfggo](https://github.com/user-attachments/assets/f3d9312f-2ad3-4fa2-9daf-01e2b1ad6cac)

At the moment, our package generator creates all packages with the type
`shared-common`. This means that we cannot enforce boundaries between
server-side-only code and the browser, and vice-versa.

- [x] I started fixing `packages/core/*`
- [x] It took me to fixing `src/core/` type to be identified by the
`plugin` pattern (`public` and `server` directories) vs. a package
(either common, or single-scoped)
- [x] Unsurprisingly, this extended to packages importing core packages
hitting the boundaries eslint rules. And other packages importing the
latter.
- [x] Also a bunch of `common` logic that shouldn't be so _common_ 🙃 

### For maintainers

- [x] This was checked for breaking API changes and was [labeled
appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)

---------

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Alejandro Fernández Haro 2024-07-29 20:47:46 +02:00 committed by GitHub
parent 518426045d
commit 11b750b10a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
498 changed files with 950 additions and 560 deletions

8
.github/CODEOWNERS vendored
View file

@ -42,6 +42,7 @@ test/analytics/plugins/analytics_plugin_a @elastic/kibana-core
packages/kbn-apm-config-loader @elastic/kibana-core @vigneshshanmugam
x-pack/plugins/observability_solution/apm_data_access @elastic/obs-knowledge-team @elastic/obs-ux-infra_services-team
packages/kbn-apm-data-view @elastic/obs-ux-infra_services-team
x-pack/plugins/observability_solution/apm/ftr_e2e @elastic/obs-ux-infra_services-team
x-pack/plugins/observability_solution/apm @elastic/obs-ux-infra_services-team
packages/kbn-apm-synthtrace @elastic/obs-ux-infra_services-team @elastic/obs-ux-logs-team
packages/kbn-apm-synthtrace-client @elastic/obs-ux-infra_services-team @elastic/obs-ux-logs-team
@ -622,6 +623,7 @@ x-pack/packages/observability/alerting_test_data @elastic/obs-ux-management-team
x-pack/test/cases_api_integration/common/plugins/observability @elastic/response-ops
x-pack/packages/observability/get_padded_alert_time_range_util @elastic/obs-ux-management-team
x-pack/plugins/observability_solution/observability_logs_explorer @elastic/obs-ux-logs-team
x-pack/plugins/observability_solution/observability_onboarding/e2e @elastic/obs-ux-logs-team @elastic/obs-ux-onboarding-team
x-pack/plugins/observability_solution/observability_onboarding @elastic/obs-ux-logs-team @elastic/obs-ux-onboarding-team
x-pack/plugins/observability_solution/observability @elastic/obs-ux-management-team
x-pack/plugins/observability_solution/observability_shared @elastic/observability-ui
@ -773,6 +775,7 @@ packages/kbn-securitysolution-t-grid @elastic/security-detection-engine
packages/kbn-securitysolution-utils @elastic/security-detection-engine
packages/kbn-server-http-tools @elastic/kibana-core
packages/kbn-server-route-repository @elastic/obs-knowledge-team
packages/kbn-server-route-repository-utils @elastic/obs-knowledge-team
x-pack/plugins/serverless @elastic/appex-sharedux
packages/serverless/settings/common @elastic/appex-sharedux @elastic/kibana-management
x-pack/plugins/serverless_observability @elastic/obs-ux-management-team
@ -856,6 +859,7 @@ test/server_integration/plugins/status_plugin_b @elastic/kibana-core
packages/kbn-std @elastic/kibana-core
packages/kbn-stdio-dev-helpers @elastic/kibana-operations
packages/kbn-storybook @elastic/kibana-operations
x-pack/plugins/observability_solution/synthetics/e2e @elastic/obs-ux-management-team
x-pack/plugins/observability_solution/synthetics @elastic/obs-ux-management-team
x-pack/test/alerting_api_integration/common/plugins/task_manager_fixture @elastic/response-ops
x-pack/test/plugin_api_perf/plugins/task_manager_performance @elastic/response-ops
@ -871,6 +875,10 @@ packages/kbn-test-eui-helpers @elastic/kibana-visualizations
x-pack/test/licensing_plugin/plugins/test_feature_usage @elastic/kibana-security
packages/kbn-test-jest-helpers @elastic/kibana-operations @elastic/appex-qa
packages/kbn-test-subj-selector @elastic/kibana-operations @elastic/appex-qa
x-pack/test_serverless @elastic/appex-qa
test @elastic/appex-qa
x-pack/test @elastic/appex-qa
x-pack/performance @elastic/appex-qa
x-pack/examples/testing_embedded_lens @elastic/kibana-visualizations
packages/kbn-text-based-editor @elastic/kibana-esql
x-pack/examples/third_party_lens_navigation_prompt @elastic/kibana-visualizations

View file

@ -12,7 +12,7 @@ import {
PanelPackage,
PresentationContainer,
} from '@kbn/presentation-containers';
import { Reference } from '@kbn/content-management-utils';
import type { Reference } from '@kbn/content-management-utils';
import { BehaviorSubject, first, merge } from 'rxjs';
import { PublishingSubject } from '@kbn/presentation-publishing';
import { omit } from 'lodash';

View file

@ -8,7 +8,7 @@
import { EuiFlexGroup, EuiFlexItem } from '@elastic/eui';
import { css } from '@emotion/react';
import { Reference } from '@kbn/content-management-utils';
import type { Reference } from '@kbn/content-management-utils';
import { CoreStart } from '@kbn/core-lifecycle-browser';
import { DataView } from '@kbn/data-views-plugin/common';
import { DATA_VIEW_SAVED_OBJECT_TYPE } from '@kbn/data-views-plugin/public';

View file

@ -789,6 +789,7 @@
"@kbn/securitysolution-utils": "link:packages/kbn-securitysolution-utils",
"@kbn/server-http-tools": "link:packages/kbn-server-http-tools",
"@kbn/server-route-repository": "link:packages/kbn-server-route-repository",
"@kbn/server-route-repository-utils": "link:packages/kbn-server-route-repository-utils",
"@kbn/serverless": "link:x-pack/plugins/serverless",
"@kbn/serverless-common-settings": "link:packages/serverless/settings/common",
"@kbn/serverless-observability": "link:x-pack/plugins/serverless_observability",
@ -1280,6 +1281,7 @@
"@kbn/ambient-ftr-types": "link:packages/kbn-ambient-ftr-types",
"@kbn/ambient-storybook-types": "link:packages/kbn-ambient-storybook-types",
"@kbn/ambient-ui-types": "link:packages/kbn-ambient-ui-types",
"@kbn/apm-ftr-e2e": "link:x-pack/plugins/observability_solution/apm/ftr_e2e",
"@kbn/apm-synthtrace": "link:packages/kbn-apm-synthtrace",
"@kbn/apm-synthtrace-client": "link:packages/kbn-apm-synthtrace-client",
"@kbn/axe-config": "link:packages/kbn-axe-config",
@ -1385,6 +1387,7 @@
"@kbn/management-storybook-config": "link:packages/kbn-management/storybook/config",
"@kbn/mock-idp-plugin": "link:packages/kbn-mock-idp-plugin",
"@kbn/mock-idp-utils": "link:packages/kbn-mock-idp-utils",
"@kbn/observability-onboarding-e2e": "link:x-pack/plugins/observability_solution/observability_onboarding/e2e",
"@kbn/openapi-bundler": "link:packages/kbn-openapi-bundler",
"@kbn/openapi-generator": "link:packages/kbn-openapi-generator",
"@kbn/optimizer": "link:packages/kbn-optimizer",
@ -1407,11 +1410,16 @@
"@kbn/spec-to-console": "link:packages/kbn-spec-to-console",
"@kbn/stdio-dev-helpers": "link:packages/kbn-stdio-dev-helpers",
"@kbn/storybook": "link:packages/kbn-storybook",
"@kbn/synthetics-e2e": "link:x-pack/plugins/observability_solution/synthetics/e2e",
"@kbn/telemetry-tools": "link:packages/kbn-telemetry-tools",
"@kbn/test": "link:packages/kbn-test",
"@kbn/test-eui-helpers": "link:packages/kbn-test-eui-helpers",
"@kbn/test-jest-helpers": "link:packages/kbn-test-jest-helpers",
"@kbn/test-subj-selector": "link:packages/kbn-test-subj-selector",
"@kbn/test-suites-serverless": "link:x-pack/test_serverless",
"@kbn/test-suites-src": "link:test",
"@kbn/test-suites-xpack": "link:x-pack/test",
"@kbn/test-suites-xpack-performance": "link:x-pack/performance",
"@kbn/tooling-log": "link:packages/kbn-tooling-log",
"@kbn/ts-projects": "link:packages/kbn-ts-projects",
"@kbn/ts-type-check-cli": "link:packages/kbn-ts-type-check-cli",

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/content-management-content-editor",
"owner": "@elastic/appex-sharedux",
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/content-management-user-profiles",
"owner": "@elastic/appex-sharedux"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-analytics-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-analytics-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-analytics-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-analytics-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-analytics-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-analytics-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-application-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-application-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-application-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-apps-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-apps-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-apps-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-base-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-base-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-base-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-base-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-capabilities-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-capabilities-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-capabilities-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-capabilities-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-capabilities-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-chrome-browser-internal",
"owner": "@elastic/appex-sharedux"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-chrome-browser-mocks",
"devOnly": true,
"owner": "@elastic/appex-sharedux"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-chrome-browser",
"owner": "@elastic/appex-sharedux"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-config-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-custom-branding-browser-internal",
"owner": "@elastic/appex-sharedux",
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-custom-branding-browser-mocks",
"owner": "@elastic/appex-sharedux",
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-custom-branding-browser",
"owner": "@elastic/appex-sharedux",
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-custom-branding-server-internal",
"owner": "@elastic/appex-sharedux",
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-custom-branding-server-mocks",
"owner": "@elastic/appex-sharedux",
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-custom-branding-server",
"owner": "@elastic/appex-sharedux",
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-deprecations-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-deprecations-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-deprecations-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-deprecations-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-deprecations-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-deprecations-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-doc-links-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-doc-links-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-doc-links-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-doc-links-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-doc-links-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-doc-links-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-elasticsearch-client-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-elasticsearch-client-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-elasticsearch-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-elasticsearch-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-elasticsearch-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-environment-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-environment-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-execution-context-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-execution-context-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-execution-context-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-execution-context-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-execution-context-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-execution-context-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-fatal-errors-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-fatal-errors-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-fatal-errors-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-http-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-http-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-http-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-context-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-context-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-request-handler-context-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-request-handler-context-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-resources-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-resources-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-resources-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-router-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-router-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-http-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-i18n-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-i18n-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-i18n-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-i18n-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-i18n-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-i18n-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-injected-metadata-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-injected-metadata-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-integrations-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-integrations-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-lifecycle-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-lifecycle-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-lifecycle-browser",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-lifecycle-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-lifecycle-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-lifecycle-server",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-logging-browser-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-browser",
"id": "@kbn/core-logging-browser-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-logging-server-internal",
"owner": "@elastic/kibana-core"
}

View file

@ -1,5 +1,5 @@
{
"type": "shared-common",
"type": "shared-server",
"id": "@kbn/core-logging-server-mocks",
"devOnly": true,
"owner": "@elastic/kibana-core"

Some files were not shown because too many files have changed in this diff Show more