Skip to content

Commit

Permalink
chore: use rimraf instead of own (#1068)
Browse files Browse the repository at this point in the history
fixes #1025

Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck committed May 14, 2024
1 parent 7155178 commit 8caf896
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
"fast-glob": "^3.3.1",
"mocha": "10.4.0",
"npm-run-all2": "^5.0.2",
"rimraf": "^5.0.7",
"ts-loader": "9.5.1",
"typedoc": "^0.25.0",
"typedoc-plugin-missing-exports": "^2.0.1",
Expand Down Expand Up @@ -165,11 +166,11 @@
"prepublishOnly": "run-s -lc build test",
"lint": "tsc --noEmit",
"build": "run-p --aggregate-output -l build:*",
"prebuild:node": "node -r fs -e 'fs.rmSync(\"dist.node\",{recursive:true,force:true})'",
"prebuild:node": "rimraf dist.node",
"build:node": "tsc -b ./tsconfig.node.json",
"prebuild:web": "node -r fs -e 'fs.rmSync(\"dist.web\",{recursive:true,force:true})'",
"prebuild:web": "rimraf dist.web",
"build:web": "webpack build",
"prebuild:d": "node -r fs -e 'fs.rmSync(\"dist.d\",{recursive:true,force:true})'",
"prebuild:d": "rimraf dist.d",
"build:d": "tsc -b ./tsconfig.d.json",
"cs-fix": "eslint --fix .",
"test": "run-p --aggregate-output -lc test:*",
Expand Down

0 comments on commit 8caf896

Please sign in to comment.