-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Console] Add a dev config for the editor migration #176520
[Console] Add a dev config for the editor migration #176520
Conversation
/ci |
/ci |
/ci |
/ci |
/ci |
Pinging @elastic/platform-deployment-management (Team:Deployment Management) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on this @yuliacech! Tested locally the new editor, code changes also LGTM 👍
💛 Build succeeded, but was flaky
Failed CI StepsMetrics [docs]Module Count
Public APIs missing comments
Async chunks
Page load bundle
History
To update your PR or re-run it, just comment with: |
## Summary This PR adds a dev config to Console to enable a migration to the Monaco editor. The config value is `false` by default and can be changed by adding `console.dev.enableMonaco: true` to `kibana.dev.yml`. Also a new custom Monaco language is registered for Console in the package `kbn/monaco` and will be worked on behind the config flag iteratively in the next weeks. To not let the dev config get into 8.13 release, this PR will only be merged **after** 8.13 has been branched. After this PR is merged, the team will start re-implementing existing Console features in the new Monaco editor, see elastic#176723 and elastic#176926 --------- Co-authored-by: kibanamachine <[email protected]>
Summary
This PR adds a dev config to Console to enable a migration to the Monaco editor. The config value is
false
by default and can be changed by addingconsole.dev.enableMonaco: true
tokibana.dev.yml
. Also a new custom Monaco language is registered for Console in the packagekbn/monaco
and will be worked on behind the config flag iteratively in the next weeks.To not let the dev config get into 8.13 release, this PR will only be merged after 8.13 has been branched.
After this PR is merged, the team will start re-implementing existing Console features in the new Monaco editor, see #176723 and #176926