We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 485e37c commit b8db85eCopy full SHA for b8db85e
lib/plugin.js
@@ -56,7 +56,14 @@ ManifestPlugin.prototype.apply = function(compiler) {
56
var seed = this.opts.seed || {};
57
58
var publicPath = this.opts.publicPath != null ? this.opts.publicPath : compilation.options.output.publicPath;
59
- var stats = compilation.getStats().toJson();
+ var stats = compilation.getStats().toJson({
60
+ // Disable data generation of everything we don't use
61
+ all: false,
62
+ // Add asset Information
63
+ assets: true,
64
+ // Show cached assets (setting this to `false` only shows emitted files)
65
+ cachedAssets: true,
66
+ });
67
68
var files = compilation.chunks.reduce(function(files, chunk) {
69
return chunk.files.reduce(function (files, path) {
0 commit comments