webpack/lib/LibManifestPlugin.js

50 lines
1.4 KiB
JavaScript
Raw Normal View History

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) {
if(!chunk.isInitial()) {
callback();
2015-05-17 00:27:59 +08:00
return;
}
2015-05-17 00:27:59 +08:00
var targetPath = compilation.getPath(this.options.path, {
hash: compilation.hash,
chunk: chunk
});
2016-01-30 18:43:22 +08:00
var name = this.options.name && compilation.getPath(this.options.name, {
2015-05-17 00:27:59 +08:00
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) {
if(module.libIdent) {
2015-05-17 00:27:59 +08:00
var ident = module.libIdent({
context: this.options.context || compiler.options.context
});
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) {
if(err) return callback(err);
2015-05-17 00:27:59 +08:00
compiler.outputFileSystem.writeFile(targetPath, content, callback);
});
}.bind(this), callback);
}.bind(this));
};