Skip to content

Commit 94ba75f

Browse files
authored
Merge pull request webpack#4794 from ndresx/disable-manifest-json-pretty-print
Disable manifest.json pretty print
2 parents 24ef6ea + de87f93 commit 94ba75f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/LibManifestPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class LibManifestPlugin {
4646
return obj;
4747
}, {})
4848
};
49-
const content = new Buffer(JSON.stringify(manifest, null, 2), "utf8"); //eslint-disable-line
49+
const content = new Buffer(JSON.stringify(manifest), "utf8"); //eslint-disable-line
5050
compiler.outputFileSystem.mkdirp(path.dirname(targetPath), err => {
5151
if(err) return callback(err);
5252
compiler.outputFileSystem.writeFile(targetPath, content, callback);

0 commit comments

Comments
 (0)