forked from jhipster/jhipster-dotnetcore
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.release-it.json
More file actions
31 lines (31 loc) · 886 Bytes
/
.release-it.json
File metadata and controls
31 lines (31 loc) · 886 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
28
29
30
31
{
"github": {
"release": true
},
"plugins": {
"@j-ulrich/release-it-regex-bumper": {
"out": [
{
"file": "./.sonarcloud.properties",
"search": "sonar.projectVersion=\\d+\\.\\d+\\.\\d+",
"replace": "sonar.projectVersion={{version}}"
},
{
"file": "./docs/conf.py",
"search": "release = '\\d+\\.\\d+\\.\\d+'",
"replace": "release = '{{version}}'"
},
{
"file": "./test-integration/samples/**/.yo-rc.json",
"search": "\"version\": \"\\d+\\.\\d+\\.\\d+\"",
"replace": "\"version\": \"{{version}}\""
},
{
"file": "./generators/bootstrap-application/**/generator.spec.js.snap",
"search": "\"version\": \"\\d+\\.\\d+\\.\\d+\"",
"replace": "\"version\": \"{{version}}\""
}
]
}
}
}