mirror of https://github.com/webpack/webpack.git
143 lines
4.9 KiB
JavaScript
143 lines
4.9 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
var SourceMapConsumer = require("webpack-core/lib/source-map").SourceMapConsumer;
|
|
var SourceMapSource = require("webpack-core/lib/SourceMapSource");
|
|
var RawSource = require("webpack-core/lib/RawSource");
|
|
var RequestShortener = require("../RequestShortener");
|
|
var ModuleFilenameHelpers = require("../ModuleFilenameHelpers");
|
|
var uglify = require("uglify-js");
|
|
|
|
function UglifyJsPlugin(options) {
|
|
if(typeof options !== "object") options = {};
|
|
if(typeof options.compressor !== "undefined") {
|
|
options.compress = options.compressor;
|
|
}
|
|
this.options = options;
|
|
}
|
|
module.exports = UglifyJsPlugin;
|
|
|
|
UglifyJsPlugin.prototype.apply = function(compiler) {
|
|
var options = this.options;
|
|
options.test = options.test || /\.js($|\?)/i;
|
|
|
|
var requestShortener = new RequestShortener(compiler.context);
|
|
compiler.plugin("compilation", function(compilation) {
|
|
if(options.sourceMap !== false) {
|
|
compilation.plugin("build-module", function(module) {
|
|
// to get detailed location info about errors
|
|
module.useSourceMap = true;
|
|
});
|
|
}
|
|
compilation.plugin("optimize-chunk-assets", function(chunks, callback) {
|
|
var files = [];
|
|
chunks.forEach(function(chunk) {
|
|
chunk.files.forEach(function(file) {
|
|
files.push(file);
|
|
});
|
|
});
|
|
compilation.additionalChunkAssets.forEach(function(file) {
|
|
files.push(file);
|
|
});
|
|
files = files.filter(ModuleFilenameHelpers.matchObject.bind(undefined, options));
|
|
files.forEach(function(file) {
|
|
var oldWarnFunction = uglify.AST_Node.warn_function;
|
|
var warnings = [];
|
|
try {
|
|
var asset = compilation.assets[file];
|
|
if(asset.__UglifyJsPlugin) {
|
|
compilation.assets[file] = asset.__UglifyJsPlugin;
|
|
return;
|
|
}
|
|
if(options.sourceMap !== false) {
|
|
if(asset.sourceAndMap) {
|
|
var sourceAndMap = asset.sourceAndMap();
|
|
var inputSourceMap = sourceAndMap.map;
|
|
var input = sourceAndMap.source;
|
|
} else {
|
|
var inputSourceMap = asset.map();
|
|
var input = asset.source();
|
|
}
|
|
var sourceMap = new SourceMapConsumer(inputSourceMap);
|
|
uglify.AST_Node.warn_function = function(warning) {
|
|
var match = /\[.+:([0-9]+),([0-9]+)\]/.exec(warning);
|
|
var line = +match[1];
|
|
var column = +match[2];
|
|
var original = sourceMap.originalPositionFor({
|
|
line: line,
|
|
column: column
|
|
});
|
|
if(!original || !original.source || original.source === file) return;
|
|
warnings.push(warning.replace(/\[.+:([0-9]+),([0-9]+)\]/, "") +
|
|
"[" + requestShortener.shorten(original.source) + ":" + original.line + "," + original.column + "]");
|
|
};
|
|
} else {
|
|
var input = asset.source();
|
|
uglify.AST_Node.warn_function = function(warning) {
|
|
warnings.push(warning);
|
|
};
|
|
}
|
|
var ast = uglify.parse(input, {
|
|
filename: file
|
|
});
|
|
if(options.compress !== false) {
|
|
ast.figure_out_scope()
|
|
var compress = uglify.Compressor(options.compress);
|
|
ast = ast.transform(compress);
|
|
}
|
|
if(options.mangle !== false) {
|
|
ast.figure_out_scope();
|
|
ast.compute_char_frequency(options.mangle || {});
|
|
ast.mangle_names(options.mangle || {});
|
|
}
|
|
var output = {};
|
|
output.comments = options.comments || /^\**!|@preserve|@license/;
|
|
output.beautify = options.beautify;
|
|
for(var k in options.output) {
|
|
output[k] = options.output[k];
|
|
}
|
|
if(options.sourceMap !== false) {
|
|
var map = uglify.SourceMap({
|
|
file: file,
|
|
root: ""
|
|
});
|
|
output.source_map = map;
|
|
}
|
|
var stream = uglify.OutputStream(output);
|
|
ast.print(stream);
|
|
if(map) map = map + "";
|
|
stream = stream + "";
|
|
asset.__UglifyJsPlugin = compilation.assets[file] = (map ?
|
|
new SourceMapSource(stream, file, JSON.parse(map), input, inputSourceMap) :
|
|
new RawSource(stream));
|
|
if(warnings.length > 0) {
|
|
compilation.warnings.push(new Error(file + " from UglifyJs\n" + warnings.join("\n")));
|
|
}
|
|
} catch(err) {
|
|
if(err.line) {
|
|
var original = sourceMap && sourceMap.originalPositionFor({
|
|
line: err.line,
|
|
column: err.col
|
|
});
|
|
if(original && original.source) {
|
|
compilation.errors.push(new Error(file + " from UglifyJs\n" + err.message + " [" + requestShortener.shorten(original.source) + ":" + original.line + "," + original.column + "]"));
|
|
} else {
|
|
compilation.errors.push(new Error(file + " from UglifyJs\n" + err.message + " [" + file + ":" + err.line + "," + err.col + "]"));
|
|
}
|
|
} else if (err.msg) {
|
|
compilation.errors.push(new Error(file + " from UglifyJs\n" + err.msg));
|
|
} else
|
|
compilation.errors.push(new Error(file + " from UglifyJs\n" + err.stack));
|
|
} finally {
|
|
uglify.AST_Node.warn_function = oldWarnFunction;
|
|
}
|
|
});
|
|
callback();
|
|
});
|
|
compilation.plugin("normal-module-loader", function(context) {
|
|
context.minimize = true;
|
|
});
|
|
});
|
|
};
|