diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-12-28 05:32:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-28 13:32:07 +0800 |
commit | c00efe56f4fb07d27eb1d47915288b027b3ef692 (patch) | |
tree | 6649bb0c894d8d188c2d4706e135edec82cdea92 /bin | |
parent | 28bcdbd7df403a4dca8bd2b7f327b65c8491235d (diff) | |
download | tracifyjs-c00efe56f4fb07d27eb1d47915288b027b3ef692.tar.gz tracifyjs-c00efe56f4fb07d27eb1d47915288b027b3ef692.zip |
workaround asynchronous tty bugs on Node.js (#4473)
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 4d1fb5a2..ed01f986 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -3,7 +3,7 @@ "use strict"; -require("../tools/exit"); +require("../tools/tty"); var fs = require("fs"); var info = require("../package.json"); |