-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
47 lines (47 loc) · 1.11 KB
/
release-please-config.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": true,
"plugins": [
{
"type": "linked-versions",
"groupName": "tui",
"components": [
"tui",
"tui-darwin-arm64",
"tui-darwin-x64",
"tui-win32-x64",
"tui-win32-arm64"
]
}
],
"packages": {
"crates/bizi-server": {
"release-type": "rust",
"component": "server"
},
"packages/client-js": {
"release-type": "node",
"component": "client"
},
"apps/tui": {
"release-type": "node",
"component": "tui"
},
"apps/tui/packages/bizi-darwin-arm64": {
"release-type": "node",
"component": "tui-darwin-arm64"
},
"apps/tui/packages/bizi-darwin-x64": {
"release-type": "node",
"component": "tui-darwin-x64"
},
"apps/tui/packages/bizi-win32-x64": {
"release-type": "node",
"component": "tui-win32-x64"
},
"apps/tui/packages/bizi-win32-arm64": {
"release-type": "node",
"component": "tui-win32-arm64"
}
}
}