You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have been holding this back since it inflates bundle size by 10%, so need to see if we can properly address.
Don't think ESBuild is properly tree shaking "entities" sub package which inflates size.
I think we should be able to remove the punycode package from our own package.json, since I think this is now a specified dependency of markdown-it.
The text was updated successfully, but these errors were encountered:
Markdown-related code was growing, representing half of app.js main
bundle code while only being needed in one view/scenario.
This extracts markdown related code to its own built file.
Related to #4858
Decided to split out MD code instead since, when coming back to this, that's the obvious route with md code using up half of the main app bundle size. Related PR: #4930
10% as separate bundle is not really significant.
Have been holding this back since it inflates bundle size by 10%, so need to see if we can properly address.
Don't think ESBuild is properly tree shaking "entities" sub package which inflates size.
I think we should be able to remove the
punycode
package from our own package.json, since I think this is now a specified dependency of markdown-it.The text was updated successfully, but these errors were encountered: