-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.release-please-config.json
52 lines (52 loc) · 1.6 KB
/
.release-please-config.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
48
49
50
51
52
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"bootstrap-sha": "main",
"release-type": "node",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"include-v-in-tag": true,
"separate-pull-requests": true,
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "docs", "section": "Documentation" },
{ "type": "chore", "section": "Miscellaneous", "hidden": true }
],
"packages": {
"apps/mobile": {
"package-name": "@cuurly/mobile",
"changelog-path": "apps/mobile/CHANGELOG.md",
"extra-files": [
{
"type": "json",
"path": "apps/mobile/app.config.ts",
"jsonpath": "$.expo.version"
}
]
},
"apps/web": {
"package-name": "@cuurly/web",
"changelog-path": "apps/web/CHANGELOG.md"
},
"packages/db": {
"package-name": "@cuurly/db",
"changelog-path": "packages/db/CHANGELOG.md"
},
"configs/eslint-config": {
"package-name": "@cuurly/eslint-config",
"changelog-path": "configs/eslint-config/CHANGELOG.md"
},
"configs/prettier-config": {
"package-name": "@cuurly/prettier-config",
"changelog-path": "configs/prettier-config/CHANGELOG.md"
},
"configs/tsconfig": {
"package-name": "@cuurly/tsconfig",
"changelog-path": "configs/tsconfig/CHANGELOG.md"
},
"configs/sentry-config": {
"package-name": "@cuurly/sentry-config",
"changelog-path": "configs/sentry-config/CHANGELOG.md"
}
}
}