terser 5.47.1 → 5.49.0
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 +10 -0
- package/dist/bundle.min.js +320 -113
- package/lib/ast.js +38 -1
- package/lib/compress/drop-side-effect-free.js +7 -0
- package/lib/compress/evaluate.js +6 -3
- package/lib/compress/index.js +1 -1
- package/lib/compress/inference.js +5 -0
- package/lib/equivalent-to.js +9 -1
- package/lib/mozilla-ast.js +25 -3
- package/lib/output.js +75 -6
- package/lib/parse.js +51 -113
- package/lib/size.js +6 -0
- package/lib/unicode.js +125 -0
- package/package.json +2 -2
- package/tools/domprops.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v5.49.0
|
|
4
|
+
|
|
5
|
+
- Add ResizeObserver `box` option to domprops
|
|
6
|
+
- Do not evaluate exponentiation of BigInt
|
|
7
|
+
- Parse identifiers from newer unicode versions, and escape them for older runtimes
|
|
8
|
+
|
|
9
|
+
## v5.48.0
|
|
10
|
+
|
|
11
|
+
- Support `import source ...` and `import defer ...` (#1682)
|
|
12
|
+
|
|
3
13
|
## v5.47.1
|
|
4
14
|
|
|
5
15
|
- Fix crash when using `mangle.keep_fnames` with destructuring
|