terser 5.40.0 → 5.42.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 +13 -0
- package/dist/bundle.min.js +445 -252
- package/lib/ast.js +10 -10
- package/lib/equivalent-to.js +6 -3
- package/lib/mozilla-ast.js +355 -197
- package/lib/output.js +10 -6
- package/lib/parse.js +65 -37
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v5.42.0
|
4
|
+
|
5
|
+
- Improved performance in the parse step by adding a fast path for simple identifiers.
|
6
|
+
- Improved ESTree conversion
|
7
|
+
|
8
|
+
## v5.41.0
|
9
|
+
|
10
|
+
- fixed semicolon insertion between class fields, when the field names are number literals
|
11
|
+
- `keep_numbers` format option now works for bigint
|
12
|
+
- internal: correctly mark accessors' is_generator property
|
13
|
+
- internal: do not read or assign quote properties without need
|
14
|
+
- internal: add missing equivalent_to comparison
|
15
|
+
|
3
16
|
## v5.40.0
|
4
17
|
|
5
18
|
- Fix exporting AssignmentExpression (default assign pattern) to ESTree
|