terser 4.5.0 → 4.6.2
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.
Potentially problematic release.
This version of terser might be problematic. Click here for more details.
- package/CHANGELOG.md +21 -0
- package/dist/bundle.min.js +1 -1
- package/dist/bundle.min.js.map +1 -1
- package/package.json +1 -1
- package/tools/domprops.js +3 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v4.6.2
|
4
|
+
|
5
|
+
- A bug where functions were inlined into other functions with scope conflicts has been fixed.
|
6
|
+
- `/*#__NOINLINE__*/` annotation fixed for more use cases where inlining happens.
|
7
|
+
|
8
|
+
## v4.6.1
|
9
|
+
|
10
|
+
- Fixed an issue where a class is duplicated by reduce_vars when there's a recursive reference to the class.
|
11
|
+
|
12
|
+
## v4.6.0
|
13
|
+
|
14
|
+
- Fixed issues with recursive class references.
|
15
|
+
- BigInt evaluation has been prevented, stopping Terser from evaluating BigInts like it would do regular numbers.
|
16
|
+
- Class property support has been added
|
17
|
+
|
18
|
+
## v4.5.1
|
19
|
+
|
20
|
+
(hotfix release)
|
21
|
+
|
22
|
+
- Fixed issue where `() => ({})[something]` was not parenthesised correctly.
|
23
|
+
|
3
24
|
## v4.5.0
|
4
25
|
|
5
26
|
- Inlining has been improved
|