-
Notifications
You must be signed in to change notification settings - Fork 86
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
Reduce bundle size increase to zero :) #1
Comments
Avoid I don't have any measurement for this one but could probably provide one if needed. |
Thanks a lot @MangelMaxime for checking this! I will look into it once the before the stable release :) |
Implemented! |
There are still 3 types not converted yet: I list them here because I can't create a PR right now. |
I keep referencing the wrong issue in my commit messages 😂 but they are implemented and will be available in v0.9 |
Ah ok sorry, I was looking at master branch which got a new commit since them :) |
No I am sorry, I added the commit after reading your message, I meant that I referenced the wrong issue in my commit message 😅 never mind |
About I know that we removed from Fulma for increase the bundle size. Other than that, I don't have more tricks for size optimisation :) |
Made another issue for it to continue discussion from there :) |
By looking at the source code Feliz is using class with a constructor.
which generates:
In order to minimize the bundle size, we can remove the constructor.
this generates:
We can even go further and have no bundle size increase by using
Erase
attribute:generates ... nothing 😜 🎉
The text was updated successfully, but these errors were encountered: