mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 17:04:01 -04:00
## Summary The `/packages` folder at the root of the Kibana repository used to contain a lot of packages. In the context of SKA, they have been gradually moved to various locations: * `src/platform/packages` * `x-pack/platform/packages` * `src/core/packages` Currently, only `devOnly: true` packages are left in this folder. This comprises libraries for CLI scripts as well as testing utilities. With this PR, we are moving ~half of these packages under `src/platform/packages/(private|shared)/`. In particular, we are moving those packages that are being used from platform and/or solutions. Since they are `"devOnly": true`, this means they are ONLY used from tests, cypress tests, storybook configs, ./scripts/ folders inside some modules, or other non-prod-time logic. Nonetheless, they are effectively referenced from platform and/or solutions code, hence I decided they should be placed under `platform` folders. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
**/*.js.snap
|
|
__tmp__
|
|
/.es
|
|
/.chromium
|
|
/build
|
|
/built_assets
|
|
/config/apm.dev.js
|
|
/data
|
|
/html_docs
|
|
/optimize
|
|
/plugins
|
|
/test/fixtures/scenarios
|
|
/x-pack/build
|
|
node_modules
|
|
target
|
|
snapshots.js
|
|
|
|
!/.eslintrc.js
|
|
!.storybook
|
|
!.buildkite
|
|
|
|
# plugin overrides
|
|
/src/platform/plugins/shared/data/common/es_query/kuery/ast/_generated_/**
|
|
/x-pack/platform/plugins/private/canvas/canvas_plugin
|
|
/x-pack/platform/plugins/private/canvas/shareable_runtime/build
|
|
/x-pack/platform/plugins/private/canvas/storybook/build
|
|
/x-pack/platform/plugins/private/reporting/server/export_types/printable_pdf/server/lib/pdf/assets/**
|
|
/x-pack/platform/plugins/private/reporting/server/export_types/printable_pdf_v2/server/lib/pdf/assets/**
|
|
/x-pack/platform/plugins/private/cloud_integrations/cloud_full_story/server/assets/**
|
|
|
|
# package overrides
|
|
/packages/kbn-eslint-config
|
|
/packages/kbn-plugin-generator/template
|
|
/packages/kbn-generate/templates
|
|
/src/platform/packages/shared/kbn-test/src/functional_test_runner/__tests__/fixtures/
|
|
/src/platform/packages/shared/kbn-test/src/functional_test_runner/lib/config/__tests__/fixtures/
|
|
/src/platform/packages/shared/kbn-flot-charts/lib
|
|
/src/platform/packages/shared/kbn-monaco/src/**/antlr
|
|
/src/platform/packages/shared/kbn-esql-ast/src/**/antlr
|
|
|
|
# Bazel
|
|
/bazel-*
|