add sourceMappingUrl to output in node module
If options.outSourceMap is specified the sourceMappingURL comment should be appended to the output stream
This commit is contained in:
@@ -126,6 +126,11 @@ exports.minify = function(files, options) {
|
|||||||
}
|
}
|
||||||
var stream = UglifyJS.OutputStream(output);
|
var stream = UglifyJS.OutputStream(output);
|
||||||
toplevel.print(stream);
|
toplevel.print(stream);
|
||||||
|
|
||||||
|
if(options.outSourceMap){
|
||||||
|
stream += "\n//# sourceMappingURL=" + options.outSourceMap;
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
code : stream + "",
|
code : stream + "",
|
||||||
map : output.source_map + ""
|
map : output.source_map + ""
|
||||||
|
|||||||
Reference in New Issue
Block a user