-
Notifications
You must be signed in to change notification settings - Fork 968
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
Minify npm package size #417
Comments
It should be sufficient to add the following to "files": [
"mousetrap*.js"
] Then,
|
@kleinfreund Are you creating a PR with that? |
@tnir Yes, I plan to do that. However, what I proposed above is not sufficient because it would exclude the plugins. The following allows the "files": [
"plugins/**/*.js",
"!plugins/**/tests",
"mousetrap*.js"
] |
any updates on this change? In addition to the bloat, the current |
Removing test and config files in npm package. Left plugin files though I am wondering if we need these.
The mousetrap npm has 676 kB in a local. Files in the
tests
can be removed in the distribution packages.The text was updated successfully, but these errors were encountered: