terser 5.45.0 → 5.46.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 +11 -0
- package/dist/bundle.min.js +227 -40
- package/lib/compress/evaluate.js +24 -17
- package/lib/compress/inference.js +5 -2
- package/lib/output.js +15 -15
- package/lib/parse.js +15 -6
- package/package.json +1 -1
- package/tools/domprops.js +169 -0
- package/tools/props.html +13 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v5.46.1
|
|
4
|
+
|
|
5
|
+
- Fix extremely slow (seemed like a freeze) `evaluate` of method chains
|
|
6
|
+
- Parse extremely large floating-point number literals as `Infinity`
|
|
7
|
+
- Remove parens from comma expressions in computed property access (`foo[(1, 2)]`)
|
|
8
|
+
|
|
9
|
+
## v5.46.0
|
|
10
|
+
|
|
11
|
+
- Add "observedAttributes" domprop (#1652)
|
|
12
|
+
- More domprops (mostly `Temporal` related) suggested in #1652
|
|
13
|
+
|
|
3
14
|
## v5.45.0
|
|
4
15
|
|
|
5
16
|
- Produce `void 0` instead of `undefined`, which is more safe
|