Skip to content

Commit

Permalink
build: add rimraf to build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Amgelo563 committed Jan 25, 2024
1 parent 39f7bf0 commit 37784a1
Show file tree
Hide file tree
Showing 4 changed files with 2,910 additions and 8,290 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"lint-staged": "14.0.1",
"nx": "v17.2.5",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"tsc-files": "1.1.4",
"tsup": "7.2.0",
"typedoc": "0.25.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"lint": "eslint ./src --fix",
"format": "prettier --write ./src",
"barrel": "barrelsby --directory ./src --delete --singleQuotes",
"build": "tsup-node src/index.ts && tsc --emitDeclarationOnly --declaration --declarationDir ./dist",
"build": "rimraf dist && tsup-node src/index.ts && tsc --emitDeclarationOnly --declaration --declarationDir ./dist",
"prepublishOnly": "pnpm run build"
},
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"lint": "eslint ./src --fix",
"format": "prettier --write ./src",
"barrel": "barrelsby --directory ./src --delete --singleQuotes",
"build": "tsup-node src/index.ts && tsc --emitDeclarationOnly --declaration --declarationDir ./dist",
"build": "rimraf dist && tsup-node src/index.ts && tsc --emitDeclarationOnly --declaration --declarationDir ./dist",
"prepublishOnly": "pnpm run build"
},
"keywords": [
Expand Down
Loading

0 comments on commit 37784a1

Please sign in to comment.