Skip to content

Commit

Permalink
ci: remove unnecessary pre-build steps (#774)
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai committed May 1, 2022
1 parent 35ac1db commit c28df72
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist"
],
"scripts": {
"clean": "rm -rf dist && rm -rf coverage",
"clean": "rm -rf dist coverage",
"lint": "yarn prettier && yarn eslint",
"lint:fix": "yarn prettier:fix && yarn eslint:fix",
"eslint": "eslint '{src,test}/**/*.ts'",
Expand All @@ -17,9 +17,7 @@
"prettier:fix": "prettier --write \"**/*.{js,ts,md,yml,json,html}\"",
"prebuild": "yarn clean",
"build": "tsc",
"pretest": "yarn build",
"test": "jest",
"precoverage": "yarn build",
"coverage": "jest --coverage --coverageReporters=lcov",
"prepare": "husky install",
"prepack": "yarn build && rm dist/tsconfig.tsbuildinfo",
Expand Down

0 comments on commit c28df72

Please sign in to comment.