terser 5.3.6 → 5.3.7

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## v5.3.7
4
+
5
+ Hotfix release, fixes package.json "engines" syntax
6
+
3
7
  ## v5.3.6
4
8
 
5
9
  - Fixed parentheses when outputting `??` mixed with `||` and `&&`
package/package.json CHANGED
@@ -4,9 +4,9 @@
4
4
  "homepage": "https://terser.org",
5
5
  "author": "Mihai Bazon <mihai.bazon@gmail.com> (http://lisperator.net/)",
6
6
  "license": "BSD-2-Clause",
7
- "version": "5.3.6",
7
+ "version": "5.3.7",
8
8
  "engines": {
9
- "node": "^10.0.0,^11.0.0,^12.0.0,>=14.0.0"
9
+ "node": "^10.0.0 || ^11.0.0 || ^12.0.0 || >=14.0.0"
10
10
  },
11
11
  "maintainers": [
12
12
  "Fábio Santos <fabiosantosart@gmail.com>"