terser 5.35.0 → 5.37.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 +9 -0
- package/dist/bundle.min.js +369 -65
- package/lib/ast.js +6 -6
- package/lib/mozilla-ast.js +30 -25
- package/lib/output.js +6 -6
- package/lib/parse.js +11 -7
- package/package.json +1 -1
- package/tools/domprops.js +316 -21
- package/tools/props.html +3 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v5.37.0
|
4
|
+
|
5
|
+
- Reserved object properties from chrome extensions (domprops)
|
6
|
+
- Fix semicolon insertion between a class property without a semicolon `a` and a computed class property `["prop"]`
|
7
|
+
|
8
|
+
## v5.36.0
|
9
|
+
|
10
|
+
- Support import attributes `with` syntax
|
11
|
+
|
3
12
|
## v5.35.0
|
4
13
|
|
5
14
|
- Ensure parent directory exists when using --output on CLI (#1530)
|