-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathrelease.config.from-solid-panes.json
More file actions
42 lines (42 loc) · 1.13 KB
/
release.config.from-solid-panes.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"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": "solid-panes",
"path": "workspaces/solid-panes",
"repo": "https://github.com/SolidOS/solid-panes.git",
"afterInstall": [
"npm install activitystreams-pane chat-pane contacts-pane folder-pane issue-pane meeting-pane pane-registry profile-pane source-pane solid-ui solid-logic solid-namespace@latest rdflib@latest"
]
},
{
"name": "mashlib",
"path": "workspaces/mashlib",
"repo": "https://github.com/SolidOS/mashlib.git",
"afterInstall": [
"npm install solid-panes solid-ui solid-logic rdflib@latest"
]
}
]
}