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) {
|
2016-07-13 17:03:14 +08:00
|
|
|
if(!chunk.isInitial()) {
|
2015-12-17 02:45:48 +08:00
|
|
|
callback();
|
2015-05-17 00:27:59 +08:00
|
|
|
return;
|
2015-12-17 02:45:48 +08:00
|
|
|
}
|
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) {
|
2015-07-16 06:19:23 +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-16 06:19:23 +08:00
|
|
|
if(ident) {
|
2016-08-17 18:05:29 +08:00
|
|
|
obj[ident] = {
|
|
|
|
id: module.id,
|
|
|
|
meta: module.meta,
|
2016-09-07 15:44:53 +08:00
|
|
|
exports: Array.isArray(module.providedExports) ? module.providedExports : undefined
|
2016-08-17 18:05:29 +08:00
|
|
|
};
|
2015-05-17 00:27:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return obj;
|
|
|
|
}.bind(this), {})
|
|
|
|
};
|
2017-01-17 13:57:27 +08:00
|
|
|
var content = new Buffer(JSON.stringify(manifest, null, 2), "utf8"); //eslint-disable-line
|
2015-05-17 00:27:59 +08:00
|
|
|
compiler.outputFileSystem.mkdirp(path.dirname(targetPath), function(err) {
|
2015-07-16 06:19:23 +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));
|
|
|
|
};
|