Skip to content

Commit 703940c

Browse files
committedDec 11, 2024··
fix: ignore errors when removing temp types files
1 parent 6722253 commit 703940c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/features/dts.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ export async function bundleDts(
4141
format: 'es',
4242
entryFileNames: `[name].d.${ext}`,
4343
})
44-
await rm(dtsOutDir, { recursive: true })
44+
await rm(dtsOutDir, { recursive: true, force: true })
4545
}

0 commit comments

Comments
 (0)
Please sign in to comment.