2015-05-17 00:27:59 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
var path = require("path");
|
|
|
|
var async = require("async");
|
|
|
|
|
|
|
|
function LibManifestPlugin(options) {
|
|
|
|
this.options = options;
|
|
|
|
}
|
|
|
|
module.exports = LibManifestPlugin;
|
|
|
|
LibManifestPlugin.prototype.apply = function(compiler) {
|
|
|
|
compiler.plugin("emit", function(compilation, callback) {
|
|
|
|
async.forEach(compilation.chunks, function(chunk, callback) {
|
2015-07-13 06:20:09 +08:00
|
|
|
if (!chunk.initial)
|
2015-05-17 00:27:59 +08:00
|
|
|
return;
|
|
|
|
var targetPath = compilation.getPath(this.options.path, {
|
|
|
|
hash: compilation.hash,
|
|
|
|
chunk: chunk
|
|
|
|
});
|
|
|
|
var name = compilation.getPath(this.options.name, {
|
|
|
|
hash: compilation.hash,
|
|
|
|
chunk: chunk
|
|
|
|
});
|
|
|
|
var manifest = {
|
|
|
|
name: name,
|
|
|
|
type: this.options.type,
|
2015-05-17 17:06:35 +08:00
|
|
|
content: chunk.modules.reduce(function(obj, module) {
|
2015-07-13 06:20:09 +08:00
|
|
|
if (module.libIdent) {
|
2015-05-17 00:27:59 +08:00
|
|
|
var ident = module.libIdent({
|
|
|
|
context: this.options.context || compiler.options.context
|
|
|
|
});
|
2015-07-13 06:20:09 +08:00
|
|
|
if (ident) {
|
2015-05-17 00:27:59 +08:00
|
|
|
obj[ident] = module.id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
}.bind(this), {})
|
|
|
|
};
|
2015-05-17 17:06:35 +08:00
|
|
|
var content = new Buffer(JSON.stringify(manifest, null, 2), "utf-8");
|
2015-05-17 00:27:59 +08:00
|
|
|
compiler.outputFileSystem.mkdirp(path.dirname(targetPath), function(err) {
|
2015-07-13 06:20:09 +08:00
|
|
|
if (err) return callback(err);
|
2015-05-17 00:27:59 +08:00
|
|
|
compiler.outputFileSystem.writeFile(targetPath, content, callback);
|
|
|
|
});
|
|
|
|
}.bind(this), callback);
|
|
|
|
}.bind(this));
|
|
|
|
};
|