This repository was archived by the owner on May 25, 2020. It is now read-only.

Description
Not a high priority but a nicety to have an option to output the concatenated source so uglifyjs warning can be taken care of more easily, say, in utils.js,
exports.uglify = function (js, opts, cb) {
...
return cb(null, stream.toString(), js);
...
}
with the source output, the line number from the uglifyjs warning can be easily found:
WARN: Non-strict equality against boolean: != true [null:3470,6]
BTW, obfuscator is a great tool!