-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
44 lines (43 loc) · 1.27 KB
/
sidebars.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
const generatedApiSidebar = require('./api-sidebar');
module.exports = {
guidesSidebar: [
{
type: 'category',
label: 'Introduction',
items: [
{ type: 'doc', id: 'introduction/why-checkup' },
{ type: 'doc', id: 'introduction/quickstart' },
{ type: 'doc', id: 'introduction/cli' },
{ type: 'doc', id: 'introduction/node-api' },
{ type: 'doc', id: 'introduction/config' },
],
collapsed: false,
},
{
type: 'category',
label: 'Guides',
items: [
{ type: 'doc', id: 'guides/plugins' },
{
type: 'category',
label: 'Authoring Tasks',
items: [
{ type: 'doc', id: 'guides/writing-tasks' },
{ type: 'doc', id: 'guides/writing-migration-tasks' },
{ type: 'doc', id: 'guides/writing-validation-tasks' },
{ type: 'doc', id: 'guides/actions' },
{ type: 'doc', id: 'guides/analyzers' },
{ type: 'doc', id: 'guides/generating-results' },
{ type: 'doc', id: 'guides/analyzing-results' },
],
collapsed: false,
},
],
collapsed: false,
},
],
apiSidebar: [].concat(
[{ type: 'doc', id: 'api/landing' }],
generatedApiSidebar
),
};