terser 4.1.0 → 4.1.4
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 +17 -0
- package/bin/uglifyjs +1 -4
- package/dist/bundle.min.js +2 -1
- package/dist/bundle.min.js.map +1 -1
- package/package.json +11 -6
- package/bin/uglifyjsnobundle +0 -4
- package/dist/bundle.js +0 -21997
- package/dist/bundle.js.map +0 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## v4.1.4
|
4
|
+
|
5
|
+
- Fixed a crash when inlining a function into somewhere else when it has interdependent, non-removable variables.
|
6
|
+
|
7
|
+
## v4.1.3
|
8
|
+
|
9
|
+
- Several issues with the `reduce_vars` option were fixed.
|
10
|
+
- Starting this version, we only have a dist/bundle.min.js
|
11
|
+
|
12
|
+
## v4.1.2
|
13
|
+
|
14
|
+
- The hotfix was hotfixed
|
15
|
+
|
16
|
+
## v4.1.1
|
17
|
+
|
18
|
+
- Fixed a bug where toplevel scopes were being mixed up with lambda scopes
|
19
|
+
|
3
20
|
## v4.1.0
|
4
21
|
|
5
22
|
- Internal functions were replaced by `Object.assign`, `Array.prototype.some`, `Array.prototype.find` and `Array.prototype.every`.
|
package/bin/uglifyjs
CHANGED
@@ -11,10 +11,7 @@ var info = require("../package.json");
|
|
11
11
|
var path = require("path");
|
12
12
|
var program = require("commander");
|
13
13
|
|
14
|
-
var
|
15
|
-
"/../dist/bundle.js" :
|
16
|
-
"/../dist/bundle.min.js");
|
17
|
-
var UglifyJS = require(bundle_path);
|
14
|
+
var UglifyJS = require("..");
|
18
15
|
try {
|
19
16
|
require("source-map-support").install();
|
20
17
|
} catch (err) {}
|