From: Mihai Bazon Date: Fri, 28 Jun 2013 07:08:13 +0000 (+0300) Subject: Reset the base54 counters every time minify is called. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=d0689c81bb859ac78a966c526073dcc50a8ccde9;p=UglifyJS.git Reset the base54 counters every time minify is called. Close #229 --- diff --git a/tools/node.js b/tools/node.js index c0dd3dbc..614e083d 100644 --- a/tools/node.js +++ b/tools/node.js @@ -63,6 +63,8 @@ exports.minify = function(files, options) { if (typeof files == "string") files = [ files ]; + UglifyJS.base54.reset(); + // 1. parse var toplevel = null; files.forEach(function(file){