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
dist/
file
sources
The dist/jquery.min.js.map file generated by Terser contains two fields with incorrect values:
dist/jquery.min.js.map
"file":"dist/jquery.min.map", "sources":["dist/jquery.js"]
The proper values are:
"file":"jquery.min.js", "sources":["jquery.js"]
and that's what we have on the 3.x-stable line with UglifyJS.
3.x-stable
Note that not only the dist/ prefix should go away but also the Terser's source map incorrectly points to itself in the file property.
We need to fix it before the final 4.0.0 release.
4.0.0
The text was updated successfully, but these errors were encountered:
Build: Switch form Terser to SWC for JS minification
3f5c882
Also, as part of this, fix the `file` & `sources` properties of the source map file. Fixes jquerygh-5285 Ref jquerygh-5258
Switching to SWC and fixing this as well in #5286.
Sorry, something went wrong.
Build: Switch form Terser to SWC for JS minification (#5286)
e242187
Also, as part of this, fix the `file` & `sources` properties of the source map file. Fixes gh-5285 Closes gh-5286 Ref gh-5258
mgol
Successfully merging a pull request may close this issue.
Description
The
dist/jquery.min.js.map
file generated by Terser contains two fields with incorrect values:The proper values are:
and that's what we have on the
3.x-stable
line with UglifyJS.Note that not only the
dist/
prefix should go away but also the Terser's source map incorrectly points to itself in thefile
property.We need to fix it before the final
4.0.0
release.Link to test case
The text was updated successfully, but these errors were encountered: