-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Use non-minified packages in dev mode #104253
Comments
Pinging @elastic/kibana-operations (Team:Operations) |
@mshustov and @mistic , Error: Minified React error #130; visit https://reactjs.org/docs/error-decoder.html?invariant=130&args[]=undefined&args[]= for the full message or use the non-minified dev environment for full errors and additional helpful warnings. |
@spalger It prints detail info. Thanks! :-) |
You won't be able to make this change permanently for now, but it should the default soon. For now, please just update the value when you need it and/or keep a temporary change locally. |
Thanks for your support! |
Packages under https://github.com/elastic/kibana/tree/master/packages folder are built and minified during
bootstrap
step.When a developer runs Kibana in
dev
mode, the minified version of such a package will be used. It worsens DX since code is barely readable:Also, some warnings for developers are trimmed and won't be emitted to the logs.
The developer should be able to run
dev
mode using thedev
version of a package with un-minified code.The text was updated successfully, but these errors were encountered: