terser 5.30.3 → 5.31.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 +8 -0
- package/dist/bundle.min.js +723 -16
- package/lib/compress/index.js +8 -9
- package/lib/parse.js +6 -6
- package/package.json +1 -1
- package/tools/domprops.js +709 -1
- package/tools/props.html +11 -0
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v5.31.0
|
4
|
+
- Sync up property mangler exceptions with current contents of Firefox and Chrome environments
|
5
|
+
- Add more webcomponent properties to property mangler exceptions (#1525)
|
6
|
+
- Drop non-nullish constants in `...spreads` in objects (#1141)
|
7
|
+
|
8
|
+
## v5.30.4
|
9
|
+
- Fix parsing `#private in ...` when next to other operators
|
10
|
+
|
3
11
|
## v5.30.3
|
4
12
|
- Fix precedence of `#private in ...` operator
|
5
13
|
|