From 4f47038d601989fcc4cf86df709a054f817d1fdd Mon Sep 17 00:00:00 2001 From: Samrith Shankar Date: Mon, 26 Apr 2021 01:39:54 +0530 Subject: [PATCH] chore: remove random console logs released in `v2.4.1` --- src/core/FileManager.ts | 1 - src/index.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/core/FileManager.ts b/src/core/FileManager.ts index aab2a31..a9c1227 100644 --- a/src/core/FileManager.ts +++ b/src/core/FileManager.ts @@ -23,7 +23,6 @@ export class FileManager extends ConfigProvider { constructor(assetsMap: AssetsGraphMap) { super(); this.assetsMap = assetsMap; - console.log(assetsMap); this.moveTracker = {}; this.moves = { total: Array.from(this.assetsMap.values()).filter( diff --git a/src/index.ts b/src/index.ts index f82cc73..845fd2c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,7 +19,6 @@ export default function Structurize(bundler: ParcelBundler): void { bundler.on('bundled', bundle => { if (shouldRunPlugin()) { logger.welcome(); - console.log('welcome printed!'); const map = new AssetMap(bundle); const fm = new FileManager(map.get()); fm.structurize();