Skip to content
This repository has been archived by the owner on Nov 23, 2024. It is now read-only.

Commit

Permalink
chore: remove random console logs released in v2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Samrith Shankar authored and samrith-s committed Apr 25, 2021
1 parent cf136f1 commit 4f47038
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/core/FileManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 4f47038

Please sign in to comment.