Skip to content

Commit

Permalink
core(helper): remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mdy-m committed Aug 20, 2024
1 parent 0aa51d8 commit d45de1a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/helper/load.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ export namespace LoadModules {
const baseDir = isPattern ? path.dirname(pt) : path.resolve(pt);
const pattern = isPattern ? path.basename(pt) : '*';
const files = await find(baseDir, pattern);
console.log('files:', files);

const importPromises = files.map(async (file) => {
const resolvedPath = path.resolve(file);
if (!moduleCache[resolvedPath]) {
Expand Down

0 comments on commit d45de1a

Please sign in to comment.