Skip to content

Commit

Permalink
fix(logClean): slash dir
Browse files Browse the repository at this point in the history
  • Loading branch information
markthree committed Sep 11, 2023
1 parent 3279315 commit 61a67f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/log.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { brightGreen, gray } from "https://deno.land/[email protected]/fmt/colors.ts"
import { slash } from "https://deno.land/x/[email protected]/src/path.ts"

export function logClean(dir: string) {
console.log(
`${brightGreen("√ clean")} ${gray(dir)}`,
`${brightGreen("√ clean")} ${gray(slash(dir))}`,
)
}

0 comments on commit 61a67f1

Please sign in to comment.