This commit is contained in:
Matěj Kubíček
2026-09-02 20:38:45 +02:00
parent 0c524ed6af
commit c7948a788a
46 changed files with 10099 additions and 152 deletions
+6
View File
@@ -0,0 +1,6 @@
import { rm } from 'node:fs/promises';
await Promise.all([
rm(new URL('../dist', import.meta.url), { recursive: true, force: true }),
rm(new URL('../artifacts', import.meta.url), { recursive: true, force: true })
]);