forked from BeeWise/react-native-video
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.release-it.json
More file actions
27 lines (26 loc) · 762 Bytes
/
.release-it.json
File metadata and controls
27 lines (26 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"git": {
"commitMessage": "chore: release v${version}",
"requireCleanWorkingDir": true,
"tagAnnotation": "Release v${version}",
"tagName": "v${version}"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
},
"hooks": {
"before:init": [
"rm -Rf lib tsconfig.tsbuildinfo",
"yarn install --frozen-lockfile --non-interactive --production=false",
"yarn run lint",
"yarn run build"
],
"after:release": "echo Successfully released ${name} v${version} from repository ${repo.repository}."
},
"npm": {
"skipChecks": false
}
}