Skip to content

Commit

Permalink
adding rimraf to test-suite
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredwray committed Sep 7, 2024
1 parent 1c3b8a0 commit 1661c13
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/test-suite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
},
"type": "module",
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format cjs,esm --dts --clean",
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"prepare": "yarn build",
"test": "xo --fix && vitest run --coverage",
"test:ci": "xo && vitest --run --sequence.setupFiles=list",
"clean": "rm -rf node_modules && rm -rf ./coverage && rm -rf dist && rm -rf ./test/testdb.sqlite"
"clean": "rimraf ./node_modules ./coverage ./dist ./test/testdb.sqlite"
},
"xo": {
"rules": {
Expand Down Expand Up @@ -67,7 +67,8 @@
"devDependencies": {
"@keyv/compress-brotli": "*",
"@types/json-bigint": "^1.0.4",
"keyv": "^5.0.1"
"keyv": "^5.0.1",
"rimraf": "^6.0.1"
},
"ava": {
"extensions": [
Expand Down

0 comments on commit 1661c13

Please sign in to comment.