Skip to content

Commit 03556ce

Browse files
committed
build: use rm -rf over del-cli
This does not work on Windows but as I only use UNIX based platforms and CI this is no issue for me.
1 parent bea06a7 commit 03556ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url": "https://edjopato.de"
1717
},
1818
"scripts": {
19-
"build": "del-cli dist && tsc",
19+
"build": "git clean -fx ./dist && tsc",
2020
"prepack": "npm run build",
2121
"test": "tsc --sourceMap && xo && c8 --all node --test --enable-source-maps"
2222
},
@@ -28,7 +28,6 @@
2828
"devDependencies": {
2929
"@types/node": "^18.18.13",
3030
"c8": "^10.1.2",
31-
"del-cli": "^6.0.0",
3231
"typescript": "^5.9.2",
3332
"xo": "^1.2.2"
3433
},

0 commit comments

Comments
 (0)