From 1af08b69ee044f3424707dfba4d3404cb3e0413b Mon Sep 17 00:00:00 2001 From: Philipp Dieter Date: Sat, 17 Nov 2018 22:30:53 +0100 Subject: [PATCH] [CLEANUP] Remove log output --- index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/index.js b/index.js index 62f6452..bcbb4ce 100644 --- a/index.js +++ b/index.js @@ -15,8 +15,6 @@ HtmlWebpackAlterDataPlugin.prototype.apply = function (compiler) { function processHtml(co, compilation) { self.options.chunkFilenameReplacement.forEach(function(replacement) { - console.log('='.repeat(30)) - console.log(replacement.tag) co(replacement.tag).each(function(i, elem) { var tag = co(elem)[0] if ( (!tag) @@ -79,7 +77,6 @@ HtmlWebpackAlterDataPlugin.prototype.apply = function (compiler) { decodeEntities: false, }) var scriptResult = processHtml(script, compilation).html() - console.log(scriptResult) co(co('script').get(i)).html(scriptResult) }) data.html = co.html()