We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99bbbeb commit 04555e3Copy full SHA for 04555e3
1 file changed
lib/LibManifestPlugin.js
@@ -51,7 +51,7 @@ class LibManifestPlugin {
51
return obj;
52
}, Object.create(null))
53
};
54
- const content = new Buffer.from(JSON.stringify(manifest), "utf8");
+ const content = Buffer.from(JSON.stringify(manifest), "utf8");
55
compiler.outputFileSystem.mkdirp(path.dirname(targetPath), err => {
56
if(err) return callback(err);
57
compiler.outputFileSystem.writeFile(targetPath, content, callback);
0 commit comments