Remove log statement.

This commit is contained in:
Dillon Kearns 2019-08-19 18:05:12 -07:00
parent f79486b3b2
commit 134b66d33c

View File

@ -17,7 +17,6 @@ class AddFilesPlugin {
apply(compiler) {
compiler.hooks.afterCompile.tap("AddFilesPlugin", compilation => {
this.filesList.forEach(file => {
console.log("adding file ", file);
compilation.assets[`${file.name}/content.txt`] = {
source: function() {
return file.content;