-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathrelease.hotFix.config.json
More file actions
50 lines (50 loc) · 1.52 KB
/
release.hotFix.config.json
File metadata and controls
50 lines (50 loc) · 1.52 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
48
49
50
{
"defaultBranch": "main",
"skipIfNoDiff": true,
"defaultInstall": "npm install",
"defaultTest": "npm test",
"defaultBuild": "npm run build",
"modes": {
"stable": {
"branch": "main",
"versionBump": "patch",
"npmTag": "latest",
"gitTag": true,
"gitPush": true
},
"test": {
"branch": "dev",
"versionBump": "prerelease",
"preid": "test",
"npmTag": "test",
"gitTag": false,
"gitPush": false
}
},
"repos": [
{
"name": "profile-pane",
"path": "workspaces/profile-pane",
"repo": "https://github.com/SolidOS/profile-pane.git",
"afterInstall": [
"npm install chat-pane@latest contacts-pane@latest solid-ui@latest pane-registry@latest solid-logic@latest rdflib@latest"
]
},
{
"name": "solid-panes",
"path": "workspaces/solid-panes",
"repo": "https://github.com/SolidOS/solid-panes.git",
"afterInstall": [
"npm install activitystreams-pane@latest chat-pane@latest contacts-pane@latest folder-pane@latest issue-pane@latest meeting-pane@latest pane-registry@latest profile-pane@latest source-pane@latest solid-ui@latest solid-logic@latest solid-namespace@latest rdflib@latest"
]
},
{
"name": "mashlib",
"path": "workspaces/mashlib",
"repo": "https://github.com/SolidOS/mashlib.git",
"afterInstall": [
"npm install solid-panes solid-ui@latest solid-logic@latest rdflib@latest"
]
}
]
}