mirror of
https://github.com/alrayyes/wiki.git
synced 2025-06-01 03:40:59 +00:00
fix: rebuild errors on windows (#692)
This commit is contained in:
parent
f36376503a
commit
8eec47c340
4 changed files with 27 additions and 5 deletions
quartz/util
13
quartz/util/fs.ts
Normal file
13
quartz/util/fs.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import os from "os"
|
||||
import { rimraf, RimrafAsyncOptions } from "rimraf"
|
||||
|
||||
export async function rmrf(
|
||||
path: string | string[],
|
||||
opt?: RimrafAsyncOptions | undefined,
|
||||
): Promise<boolean> {
|
||||
if (os.platform() == "win32") {
|
||||
return rimraf.windows(path, opt)
|
||||
} else {
|
||||
return rimraf(path, opt)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue