terser 5.13.0 → 5.13.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/dist/bundle.min.js +2645 -2531
- package/lib/ast.js +24 -0
- package/lib/compress/common.js +48 -0
- package/lib/compress/index.js +23 -546
- package/lib/compress/inline.js +641 -0
- package/lib/compress/tighten-body.js +1 -1
- package/lib/parse.js +58 -56
- package/lib/size.js +6 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v5.13.1
|
4
|
+
- Removed self-assignments (`varname=varname`) (closes #1081)
|
5
|
+
- Separated inlining code (for inlining things into references, or removing IIFEs)
|
6
|
+
- Allow multiple identifiers with the same name in `var` destructuring (eg `var { a, a } = x`) (#1176)
|
7
|
+
|
3
8
|
## v5.13.0
|
4
9
|
|
5
10
|
- All calls to eval() were removed (#1171, #1184)
|