terser 4.6.9 → 4.6.13
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 +23 -0
- package/README.md +8 -12
- package/dist/bundle.min.js +1 -1
- package/dist/bundle.min.js.map +1 -1
- package/package.json +3 -3
- package/tools/terser.d.ts +1 -1
package/package.json
CHANGED
@@ -4,7 +4,7 @@
|
|
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": "4.6.
|
7
|
+
"version": "4.6.13",
|
8
8
|
"engines": {
|
9
9
|
"node": ">=6.0.0"
|
10
10
|
},
|
@@ -40,8 +40,8 @@
|
|
40
40
|
"mochallel": "^2.0.0",
|
41
41
|
"pre-commit": "^1.2.2",
|
42
42
|
"rimraf": "^3.0.0",
|
43
|
-
"rollup": "
|
44
|
-
"rollup-plugin-terser": "
|
43
|
+
"rollup": "2.0.6",
|
44
|
+
"rollup-plugin-terser": "5.3.0",
|
45
45
|
"semver": "^7.1.3"
|
46
46
|
},
|
47
47
|
"scripts": {
|
package/tools/terser.d.ts
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
import { RawSourceMap } from 'source-map';
|
4
4
|
|
5
5
|
/** @deprecated since this versions basically do not exist */
|
6
|
-
type ECMA_UNOFFICIAL = 6 | 7 | 8 | 9;
|
6
|
+
type ECMA_UNOFFICIAL = 6 | 7 | 8 | 9 | 10 | 11;
|
7
7
|
|
8
8
|
export type ECMA = 5 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | ECMA_UNOFFICIAL;
|
9
9
|
|