aboutsummaryrefslogtreecommitdiff
path: root/node_modules/webpack/lib/LibManifestPlugin.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/webpack/lib/LibManifestPlugin.js')
-rw-r--r--node_modules/webpack/lib/LibManifestPlugin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/webpack/lib/LibManifestPlugin.js b/node_modules/webpack/lib/LibManifestPlugin.js
index ba6b6d426..59558f406 100644
--- a/node_modules/webpack/lib/LibManifestPlugin.js
+++ b/node_modules/webpack/lib/LibManifestPlugin.js
@@ -46,7 +46,7 @@ class LibManifestPlugin {
return obj;
}, {})
};
- const content = new Buffer(JSON.stringify(manifest, null, 2), "utf8"); //eslint-disable-line
+ const content = new Buffer(JSON.stringify(manifest), "utf8"); //eslint-disable-line
compiler.outputFileSystem.mkdirp(path.dirname(targetPath), err => {
if(err) return callback(err);
compiler.outputFileSystem.writeFile(targetPath, content, callback);