-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-sidebar.js
More file actions
42 lines (42 loc) · 1.22 KB
/
api-sidebar.js
File metadata and controls
42 lines (42 loc) · 1.22 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
module.exports = [
{
type: "category",
label: "Packages",
items: [
{
type: "category",
label: "@checkup/cli",
items: [
"api/@checkup/cli/CheckupTaskRunner",
"api/@checkup/cli/file-writer",
"api/@checkup/cli/get-formatter",
],
collapsed: false,
},
{
type: "category",
label: "@checkup/core",
items: [
"api/@checkup/core/AstAnalyzer",
"api/@checkup/core/AstTransformer",
"api/@checkup/core/BaseMigrationTask",
"api/@checkup/core/BaseTask",
"api/@checkup/core/BaseValidationTask",
"api/@checkup/core/CheckupError",
"api/@checkup/core/CheckupLogBuilder",
"api/@checkup/core/CheckupLogParser",
"api/@checkup/core/DependencyAnalyzer",
"api/@checkup/core/HandlebarsAnalyzer",
"api/@checkup/core/JavaScriptAnalyzer",
"api/@checkup/core/JsonAnalyzer",
"api/@checkup/core/TaskError",
"api/@checkup/core/error-kind",
"api/@checkup/core/normalize-package-name",
"api/@checkup/core/plugin-name",
],
collapsed: false,
},
],
collapsed: false,
},
];