-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathrelease.config.from-solid-ui.json
More file actions
114 lines (114 loc) · 3.33 KB
/
release.config.from-solid-ui.json
File metadata and controls
114 lines (114 loc) · 3.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"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-ui",
"path": "workspaces/solid-ui",
"repo": "https://github.com/SolidOS/solid-ui.git",
"afterInstall": [
"npm install pane-registry@latest solid-logic@latest rdflib@latest solid-namespace@latest"
]
},
{
"name": "activitystreams-pane",
"path": "workspaces/activitystreams-pane",
"repo": "https://github.com/SolidOS/activitystreams-pane.git",
"afterInstall": [
"npm install solid-ui pane-registry solid-logic rdflib@latest"
]
},
{
"name": "chat-pane",
"path": "workspaces/chat-pane",
"repo": "https://github.com/SolidOS/chat-pane.git",
"afterInstall": [
"npm install solid-ui solid-logic rdflib@latest"
]
},
{
"name": "folder-pane",
"path": "workspaces/folder-pane",
"repo": "https://github.com/SolidOS/folder-pane.git",
"afterInstall": [
"npm install solid-ui solid-logic rdflib@latest"
]
},
{
"name": "issue-pane",
"path": "workspaces/issue-pane",
"repo": "https://github.com/SolidOS/issue-pane.git",
"afterInstall": [
"npm install solid-ui solid-logic rdflib@latest"
]
},
{
"name": "meeting-pane",
"path": "workspaces/meeting-pane",
"repo": "https://github.com/SolidOS/meeting-pane.git",
"afterInstall": [
"npm install solid-ui solid-logic rdflib@latest"
]
},
{
"name": "contacts-pane",
"path": "workspaces/contacts-pane",
"repo": "https://github.com/SolidOS/contacts-pane.git",
"afterInstall": [
"npm install solid-ui solid-logic rdflib@latest"
]
},
{
"name": "profile-pane",
"path": "workspaces/profile-pane",
"repo": "https://github.com/SolidOS/profile-pane.git",
"afterInstall": [
"npm install chat-pane solid-ui pane-registry solid-logic rdflib@latest"
]
},
{
"name": "source-pane",
"path": "workspaces/source-pane",
"repo": "https://github.com/SolidOS/source-pane.git",
"afterInstall": [
"npm install solid-ui solid-logic rdflib@latest"
]
},
{
"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"
]
}
]
}