terser 4.6.13 → 4.7.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.
Potentially problematic release.
This version of terser might be problematic. Click here for more details.
- package/CHANGELOG.md +6 -0
- package/bin/terser +1 -0
- package/dist/bundle.min.js +1 -1
- package/dist/bundle.min.js.map +1 -1
- package/package.json +2 -2
- package/tools/postinstall.js +0 -7
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v4.7.0
|
4
|
+
|
5
|
+
- A bug was fixed where an arrow function would have the wrong size
|
6
|
+
- `arguments` object is now considered safe to retrieve properties from (useful for `length`, or `0`) even when `pure_getters` is not set.
|
7
|
+
- Fixed erroneous `const` declarations without value (which is invalid) in some corner cases when using `collapse_vars`.
|
8
|
+
|
3
9
|
## v4.6.13
|
4
10
|
|
5
11
|
- Fixed issue where ES5 object properties were being turned into ES6 object properties due to more lax unicode rules.
|