Skip to content

Commit

Permalink
Add clean task
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Jun 2, 2021
1 parent 8a2d055 commit d852b72
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"start:dev:server": "ts-node-dev --rs example.ts",
"start:dev": "concurrently \"yarn start:dev:ui\" \"yarn start:dev:server\"",
"test": "lerna run test",
"clean": "lerna run clean",
"release": "release-it --only-version"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
],
"scripts": {
"build": "tsc",
"test": "jest"
"test": "jest",
"clean": "rm -rf dist"
},
"dependencies": {
"redis-info": "^3.0.8"
Expand Down
3 changes: 2 additions & 1 deletion packages/express/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"dist"
],
"scripts": {
"build": "tsc"
"build": "tsc",
"clean": "rm -rf dist"
},
"dependencies": {
"@bull-board/api": "3.2.4",
Expand Down
3 changes: 2 additions & 1 deletion packages/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"dist"
],
"scripts": {
"build": "tsc"
"build": "tsc",
"clean": "rm -rf dist"
},
"dependencies": {
"@bull-board/api": "3.2.4",
Expand Down
3 changes: 2 additions & 1 deletion packages/hapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"dist"
],
"scripts": {
"build": "tsc"
"build": "tsc",
"clean": "rm -rf dist"
},
"dependencies": {
"@bull-board/api": "3.2.4",
Expand Down
3 changes: 2 additions & 1 deletion packages/koa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"dist"
],
"scripts": {
"build": "tsc"
"build": "tsc",
"clean": "rm -rf dist"
},
"dependencies": {
"@bull-board/api": "3.2.4",
Expand Down
3 changes: 2 additions & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
],
"scripts": {
"start": "NODE_ENV=development webpack serve",
"build": "NODE_ENV=production webpack --mode=production"
"build": "NODE_ENV=production webpack --mode=production",
"clean": "rm -rf dist"
},
"dependencies": {
"@bull-board/api": "3.2.4",
Expand Down

0 comments on commit d852b72

Please sign in to comment.