From: Matt Robenolt Date: Tue, 21 May 2013 14:50:21 +0000 (-0600) Subject: The extra /* */ isn't needed now X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=3a218615804ceaf0fa1fcf7b8a0b3e10df3e6c86;p=UglifyJS.git The extra /* */ isn't needed now --- diff --git a/bin/uglifyjs b/bin/uglifyjs index 3ac2a44d..2611d960 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -309,7 +309,7 @@ async.eachLimit(files, 1, function (file, cb) { if (SOURCE_MAP) { fs.writeFileSync(ARGS.source_map, SOURCE_MAP, "utf8"); - output += "\n/*\n//# sourceMappingURL=" + (ARGS.source_map_url || ARGS.source_map) + "\n*/"; + output += "\n//# sourceMappingURL=" + (ARGS.source_map_url || ARGS.source_map); } if (OUTPUT_FILE) {