-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsidebars.js
More file actions
43 lines (43 loc) · 1.07 KB
/
sidebars.js
File metadata and controls
43 lines (43 loc) · 1.07 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
module.exports = {
someSidebar: {
"Nest.land": ["nest/README"],
"Nest CLI": [
"cli/README",
{
Commands: [
"cli/commands/help",
"cli/commands/init",
"cli/commands/login",
"cli/commands/logout",
"cli/commands/publish",
"cli/commands/setup",
"cli/commands/switch",
"cli/commands/sync",
"cli/commands/upgrade",
],
},
{
"Configuration files": [
"cli/configuration/module.json",
"cli/configuration/ignore",
"cli/configuration/data.json",
"cli/configuration/users.json",
],
},
"cli/faq",
"cli/cicd",
],
Eggs: [
"eggs/README",
"eggs/installation",
"eggs/linking-your-api-key",
"eggs/configuration",
"eggs/publishing-a-module",
"eggs/dependency-tree",
"eggs/updating-all-of-your-dependencies",
"eggs/installing-a-script-as-an-executable",
"eggs/upgrade-eggs",
],
API: ["api/README", "api/mutations", "api/queries"],
},
};