-
Notifications
You must be signed in to change notification settings - Fork 24.6k
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
Bundle size reduction #23968
Bundle size reduction #23968
Conversation
…aves on minified bundle size (according to bundlephobia.com). yargs 9.0 to 13.2.2 saves 13kb, regenerator-runtime saves a few hundred bytes, prop-types saves ~1kb.
|
And since jsc has been upgraded, maybe we can also remove some polyfill and babel plugins? |
Could you revert the changes to yargs and jest-junit for now? How does this PR affect bundle size? |
I'd love to do that, but I think there are some Facebook dependencies that need to be fixed first. Ideally, we could have a CLI flag that doesn't include the polyfills so OSS users aren't being held back by Facebook's deployment constraint. It's not just the bundle size, but the global initialization code that needs to run as well. |
…dle-size-reduction
…for OSS users, we should really try to unblock that soon.
Sure. Can you give some detail on the yargs constraint? That's probably the biggest savings in terms of bundle size (~13kb). Even updating it to 10.x (if somehow 13 is not workable for FB) would help.
It's saving ~30kb when using haul in one of my apps. I can't seem to get consistent results when trying to compare using RNTester. There's this weird 80-100 byte variance I can't track down.
|
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!
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.
@cpojer is landing this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
This pull request was successfully merged by @matthargett in 13351e6. When will my fix make it into a release? | Upcoming Releases |
Summary
With recent activity to extract out non-core things into separate repos, I did an audit of the package.json to see what can be removed, and what packages remain that have newer versions that result in less/smaller javascript code. The goal is to:
Changelog
[internal] [chore] - Remove unneeded packages, bump package versions who now have smaller size
Test Plan
yarn lint
yarn flow
yarn test
yarn test-android-unit