-
Notifications
You must be signed in to change notification settings - Fork 20
/
sources-docs.js
171 lines (168 loc) · 4.42 KB
/
sources-docs.js
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
module.exports = [
// CMS 6
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--6',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '6.0',
patterns: 'en/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--6--optional_features/linkfield',
remote: 'https://github.com/silverstripe/silverstripe-linkfield.git',
branch: '5.0',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--6--optional_features/userforms',
remote: 'https://github.com/silverstripe/silverstripe-userforms.git',
branch: '7.0',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--6--optional_features/elemental',
remote: 'https://github.com/silverstripe/silverstripe-elemental.git',
branch: '6.0',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--6--optional_features/mfa',
remote: 'https://github.com/silverstripe/silverstripe-mfa.git',
branch: '6.0',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: `gatsby-source-git`,
options: {
name: `docs--6--optional_features/graphql`,
remote: `https://github.com/silverstripe/silverstripe-graphql.git`,
branch: `6.0`,
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--6--optional_features/mfa/authenticators/totp-authenticator',
remote: 'https://github.com/silverstripe/silverstripe-totp-authenticator.git',
branch: '6.0',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--6--optional_features/taxonomies',
remote: 'https://github.com/silverstripe/silverstripe-taxonomy.git',
branch: '4.0',
patterns: 'docs/en/!(userguide)/**'
}
},
// CMS 5
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '5.3',
patterns: 'en/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/linkfield',
remote: 'https://github.com/silverstripe/silverstripe-linkfield.git',
branch: '4.1',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/userforms',
remote: 'https://github.com/silverstripe/silverstripe-userforms.git',
branch: '6.3',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/elemental',
remote: 'https://github.com/silverstripe/silverstripe-elemental.git',
branch: '5.3',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/mfa',
remote: 'https://github.com/silverstripe/silverstripe-mfa.git',
branch: '5.3',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/mfa/authenticators/totp-authenticator',
remote: 'https://github.com/silverstripe/silverstripe-totp-authenticator.git',
branch: '5.2',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/mfa/authenticators/webauthn-authenticator',
remote: 'https://github.com/silverstripe/silverstripe-webauthn-authenticator.git',
branch: '5.3',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/taxonomies',
remote: 'https://github.com/silverstripe/silverstripe-taxonomy.git',
branch: '3.2',
patterns: 'docs/en/!(userguide)/**'
}
},
// CMS 4
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--4',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '4.13',
patterns: 'en/**'
}
},
// CMS 3
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--3',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '3',
patterns: 'en/**'
}
},
];