-
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
[browserslist] remove unnecessary browsers #89186
[browserslist] remove unnecessary browsers #89186
Conversation
Pinging @elastic/kibana-operations (Team:Operations) |
This comment has been minimized.
This comment has been minimized.
Do you think that's a reasonable change @tylersmalley? Maybe I should add some mobile browsers on there just to be safe? |
After updating the database on this PR, the updated support would be:
diff 1,18c1,6
< and_chr 85
< and_uc 12.12
< chrome 85
< chrome 84
< chrome 83
< chrome 80
< chrome 49
< edge 85
< edge 18
< firefox 81
< firefox 80
< ios_saf 14
< ios_saf 13.4-13.7
< ios_saf 13.3
< ios_saf 13.0-13.1
< ios_saf 12.2-12.4
< ios_saf 12.0-12.1
< opera 70
---
> chrome 87
> chrome 86
> edge 87
> edge 86
> firefox 84
> firefox 83
21d8
< samsung 12.0 Current browser usage data from https://caniuse.com/usage-table to what we had previously supported
I suggest we also update the database in this PR |
💚 Build SucceededMetrics [docs]Module Count
Async chunks
Page load bundle
Unknown metric groups@kbn/ui-shared-deps asset size
async chunk count
History
To update your PR or re-run it, just comment with: |
Co-authored-by: spalger <[email protected]> Co-authored-by: spalger <[email protected]>
While investigating an upgrade to babel 7.12 we are running into issues as the size of helpers injected into the build is substantially increasing the size of our page load assets. While determining which new helpers might be causing this I learned that we're still transpiling async/await code, even though our browser support matrix intentionally focuses on greenfield browsers with support for async/await syntax.
Fixes #89029