-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.json
47 lines (47 loc) · 1.25 KB
/
project.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"root": ".",
"targets": {
"version": {
"executor": "@jscutlery/semver:version",
"options": {
"baseBranch": "master",
"push": true,
"noVerify": true,
"commitMessageFormat": "release(${projectName}): publish version ${version}",
"postTargets": [
"workspace:github",
"form-builder:publish",
"form-validation-rule-list:publish",
"form-redux:publish",
"form-editor:publish",
"form-context:publish"
]
}
},
"pre-version": {
"executor": "@jscutlery/semver:version",
"options": {
"noVerify": true,
"push": true,
"commitMessageFormat": "release(${projectName}): publish pre-release version ${version}",
"postTargets": [
"form-builder:publish-dev",
"form-validation-rule-list:publish-dev",
"form-redux:publish-dev",
"form-editor:publish-dev",
"form-context:publish-dev"
],
"skipProjectChangelog": true,
"skipRootChangelog": true
}
},
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"target": "master",
"tag": "${tag}",
"notes": "${notes}"
}
}
}
}