-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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 additional js files #8773
Comments
1 Minify step can make debugging harder. If you want to add minify step - please make it optional (even better - using flag with ability to switch minify method) |
Well, yeah, I figured that this would obey the existing minification flags. Currently if you compile with something like |
I agree, it makes sense to do this with the current flags ( To minify those files, running |
This issue has been automatically marked as stale because there has been no activity in the past year. It will be closed automatically if no further activity occurs in the next 7 days. Feel free to re-open at any time if this issue is still relevant. |
|
This issue has been automatically marked as stale because there has been no activity in the past year. It will be closed automatically if no further activity occurs in the next 30 days. Feel free to re-open at any time if this issue is still relevant. |
Additional js files generated by the compiler do not get minified. They probably should be.
For example
Module.worker.js
is generated when compiling with PTHREADS,Module.fetch.js
when compiling with FETCH. These files are only ~11KB and ~115KB, but I can't see any harm on running the minifier on them.The text was updated successfully, but these errors were encountered: