Skip to content

Commit

Permalink
Update release-it pre-hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
cbush committed Sep 25, 2023
1 parent c74e1a9 commit 718b96d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion chat-server/.release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"git": {
"tag": false,
"push": true,
"pushRepo": "upstream",
"tagName": "chat-server-v${version}"
},
"npm": {
Expand All @@ -13,6 +14,11 @@
"release": true
},
"hooks": {
"before:init": ["git pull", "npm run build", "npm run lint", "npm run test"]
"before:init": [
"pushd ../chat-core && npm i && npm run build && popd",
"npm run build",
"npm run lint",
"npm run test"
]
}
}

0 comments on commit 718b96d

Please sign in to comment.