Skip to content

Commit b3dc27f

Browse files
committed
Update clean.js removed semicolons
1 parent ffdb8ec commit b3dc27f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clean.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { existsSync, rmSync } from 'fs';
1+
import { existsSync, rmSync } from 'fs'
22

33
const cleanDirectory = () => {
4-
if (!existsSync('./out/')) return console.error(`failed: dir out not exist`)
4+
if (!existsSync('./out/')) return console.error(`failed: dir out not exist`)
55
rmSync('./out/', { recursive: true })
66
console.log(`complete: dir out has been deleted`)
77
}

0 commit comments

Comments
 (0)