-
Notifications
You must be signed in to change notification settings - Fork 55
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 unnecessary package size #291
Comments
Curious what you mean by "bundle" specifically. When compressed, all this data is about 2MB |
Why is unpacked size important? |
This also isn't going to work, having 3 packages can have the opposite effect doubling the package size. For example, what happens when a package depends on |
Link to discord discussion https://discord.com/channels/413438066984747026/743199746876768318/1127735522626904074 - some proposals about compression and using alternative packages discussed |
Rom suggested using a separate async package, I commented
|
related #185 |
Currently, consuming the library pollutes
node_modules
with over 100MB of data that most of the time is never actually used.A simple way to largely reduce this would be splitting the platforms like so:
minecraft-data@pc
(Independent)minecraft-data@bedrock
(Independent)minecraft-data
(Depends on both)The text was updated successfully, but these errors were encountered: