We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Rollup is not configure to preserveModules for the src/index.ts entry, resulting in one ESM and one JS file for the entire library.
preserveModules
src/index.ts
We'd like to allow consumers to import individual components and be able to tree shake the files that are not used.
import { Button } from 'react95';
Should only include files necessary for the Button to render.
The text was updated successfully, but these errors were encountered:
🎉 This issue has been resolved in version 4.0.0-beta.13 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
🎉 This issue has been resolved in version 4.0.0 🎉
No branches or pull requests
Rollup is not configure to
preserveModules
for thesrc/index.ts
entry, resulting in one ESM and one JS file for the entire library.We'd like to allow consumers to import individual components and be able to tree shake the files that are not used.
Should only include files necessary for the Button to render.
The text was updated successfully, but these errors were encountered: