Skip to content

Commit

Permalink
chore(clean): remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
srod committed Nov 23, 2024
1 parent bf7e794 commit 90da9a8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ const isValidFile = (path: string): boolean => {
* @returns
*/
const readFile = (path: string): string => {
console.log("path", path);
if (!existsSync(path) || isValidFile(path)) {
return readFileSync(path, "utf8");
}
Expand Down

0 comments on commit 90da9a8

Please sign in to comment.