Replace rm -rf with rimraf

This commit is contained in:
Jonathan Barrow
2023-04-25 15:58:44 -04:00
parent 11fb673fc8
commit 510e75dc38

View File

@@ -6,7 +6,7 @@
"scripts": {
"lint": "npx eslint .",
"build": "npm run lint && npm run clean && npx tsc && npx tsc-alias",
"clean": "rm -rf ./dist",
"clean": "rimraf ./dist",
"start": "node .",
"test": "ts-node test/test.ts"
},