diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-01-07 08:53:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 16:53:29 +0800 |
commit | 6c419bc083e097337960f1a19d2c352336d75e16 (patch) | |
tree | 87febc2499af74b116f8d4b0e5fb76a910f10291 /bin | |
parent | 25321df959eb7aac7bd144be428a0aea0d29a0b9 (diff) | |
download | tracifyjs-6c419bc083e097337960f1a19d2c352336d75e16.tar.gz tracifyjs-6c419bc083e097337960f1a19d2c352336d75e16.zip |
implement `UGLIFY_BUG_REPORT` (#4516)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/uglifyjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/uglifyjs b/bin/uglifyjs index ed01f986..c2576ba0 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -265,7 +265,7 @@ if (paths.length) { process.stdin.on("data", function(chunk) { chunks.push(chunk); }).on("end", function() { - files = [ chunks.join("") ]; + files = { STDIN: chunks.join("") }; run(); }); process.stdin.resume(); |