Skip to content

Commit

Permalink
chore: Remove redundant runs from release script
Browse files Browse the repository at this point in the history
  • Loading branch information
Akurganow committed Oct 9, 2023
1 parent ded8bb8 commit fba51f7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint": "eslint ./src/**/*.ts",
"test": "jest",
"build": "tsc",
"release": "npm run lint && npm run test && npm run build && dotenv release-it"
"release": "dotenv release-it"
},
"repository": {
"type": "git",
Expand All @@ -24,7 +24,8 @@
"hooks": {
"before:init": [
"npm run lint",
"npm test"
"npm test",
"npm run build"
],
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
Expand Down

0 comments on commit fba51f7

Please sign in to comment.