|
1 | 1 | export const developSkillSidebar = [ |
2 | | - { |
3 | | - text: '软件安装', |
4 | | - collapsible: true, |
| 2 | + { |
| 3 | + text: '软件安装', |
| 4 | + collapsible: true, |
| 5 | + children: [ |
| 6 | + { |
| 7 | + text: 'IDEA', |
| 8 | + link: '/develop-skill/npm/npm' |
| 9 | + }, |
| 10 | + { |
| 11 | + text: '软件大杂烩', |
| 12 | + link: '/develop-skill/software-install/readme.md' |
| 13 | + } |
| 14 | + ] |
| 15 | + }, |
| 16 | + { |
| 17 | + text: '包管理器', |
| 18 | + collapsible: true, |
| 19 | + children: [ |
| 20 | + { |
| 21 | + text: 'npm', |
| 22 | + link: '/develop-skill/npm/npm' |
| 23 | + }, |
| 24 | + { |
| 25 | + text: 'pnpm', |
| 26 | + link: '/develop-skill/npm/pnpm' |
| 27 | + }, |
| 28 | + { |
| 29 | + text: 'yarn', |
| 30 | + link: '/develop-skill/npm/yarn' |
| 31 | + } |
| 32 | + ] |
| 33 | + }, |
| 34 | + { |
| 35 | + text: 'monorepo', |
| 36 | + collapsible: true, |
| 37 | + children: [ |
| 38 | + { |
| 39 | + text: 'pnpm实现', |
| 40 | + link: '/develop-skill/monorepo/pnpm-style.md' |
| 41 | + }, |
| 42 | + { |
| 43 | + text: 'turboRepo', |
| 44 | + link: '/develop-skill/monorepo/turboRepo.md' |
| 45 | + } |
| 46 | + ] |
| 47 | + }, |
| 48 | + { |
| 49 | + text: '编译工具', |
| 50 | + collapsible: true, |
| 51 | + children: [ |
| 52 | + { |
| 53 | + text: 'webpack', |
| 54 | + link: '/' |
| 55 | + }, |
| 56 | + { |
| 57 | + text: 'vite', |
| 58 | + link: '/' |
| 59 | + } |
| 60 | + ] |
| 61 | + }, |
| 62 | + { |
| 63 | + text: '代码管理', |
| 64 | + collapsible: true, |
| 65 | + children: [ |
| 66 | + { |
| 67 | + text: 'Git', |
5 | 68 | children: [ |
6 | | - { |
7 | | - text: 'IDEA', |
8 | | - link: '/develop-skill/npm/npm' |
9 | | - }, |
10 | | - { |
11 | | - text: '软件大杂烩', |
12 | | - link: '/develop-skill/software-install/readme.md' |
13 | | - } |
| 69 | + { |
| 70 | + text: '基本操作', |
| 71 | + link: '/develop-skill/code-manager/git.md' |
| 72 | + }, |
| 73 | + { |
| 74 | + text: '分支版本规范', |
| 75 | + link: '/develop-skill/code-manager/git-branch-rule.md' |
| 76 | + }, |
| 77 | + { |
| 78 | + text: '提交规范', |
| 79 | + link: '/develop-skill/code-manager/git-commit-rule.md' |
| 80 | + }, |
| 81 | + { |
| 82 | + text: '修改历史提交信息', |
| 83 | + link: '/develop-skill/code-manager/git-info-reset.md' |
| 84 | + } |
14 | 85 | ] |
15 | | - }, |
16 | | - { |
17 | | - text: '包管理器', |
18 | | - collapsible: true, |
19 | | - children: [ |
20 | | - { |
21 | | - text: 'npm', |
22 | | - link: '/develop-skill/npm/npm' |
23 | | - }, |
24 | | - { |
25 | | - text: 'pnpm', |
26 | | - link: '/develop-skill/npm/pnpm' |
27 | | - }, |
28 | | - { |
29 | | - text: 'yarn', |
30 | | - link: '/develop-skill/npm/yarn' |
31 | | - } |
32 | | - ] |
33 | | - }, |
34 | | - { |
35 | | - text: 'monorepo', |
36 | | - collapsible: true, |
37 | | - children: [ |
38 | | - { |
39 | | - text: 'pnpm实现', |
40 | | - link: '/develop-skill/monorepo/pnpm-style.md' |
41 | | - }, |
42 | | - { |
43 | | - text: 'turboRepo', |
44 | | - link: '/develop-skill/monorepo/turboRepo.md' |
45 | | - } |
46 | | - ] |
47 | | - }, |
48 | | - { |
49 | | - text: '编译工具', |
50 | | - collapsible: true, |
51 | | - children: [ |
52 | | - { |
53 | | - text: 'webpack', |
54 | | - link: '/' |
55 | | - }, |
56 | | - { |
57 | | - text: 'vite', |
58 | | - link: '/' |
59 | | - } |
60 | | - ] |
61 | | - }, |
62 | | - { |
63 | | - text: '代码管理', |
64 | | - collapsible: true, |
65 | | - children: [ |
66 | | - { |
67 | | - text: 'Git', |
68 | | - children: [ |
69 | | - { |
70 | | - text: '基本操作', |
71 | | - link: '/develop-skill/code-manager/git.md' |
72 | | - }, |
73 | | - { |
74 | | - text: '分支版本规范', |
75 | | - link: '/develop-skill/code-manager/git-branch-rule.md' |
76 | | - }, |
77 | | - { |
78 | | - text: '提交规范', |
79 | | - link: '/develop-skill/code-manager/git-commit-rule.md' |
80 | | - }, |
81 | | - { |
82 | | - text: '修改历史提交信息', |
83 | | - link: '/develop-skill/code-manager/git-info-reset.md' |
84 | | - } |
85 | | - ] |
86 | | - }, |
87 | | - { |
88 | | - text: 'Github && GitLab', |
89 | | - link: '/develop-skill/code-manager/github.md' |
90 | | - } |
91 | | - ] |
92 | | - }, |
93 | | - { |
94 | | - text: '代码风格', |
95 | | - collapsible: true, |
96 | | - children: [ |
97 | | - { |
98 | | - text: 'Eslint', |
99 | | - link: '/develop-skill/eslint' |
100 | | - }, |
101 | | - { |
102 | | - text: 'Prettier', |
103 | | - link: '/develop-skill/prettier' |
104 | | - } |
105 | | - ] |
106 | | - } |
| 86 | + }, |
| 87 | + { |
| 88 | + text: 'Github && GitLab', |
| 89 | + link: '/develop-skill/code-manager/github.md' |
| 90 | + } |
| 91 | + ] |
| 92 | + }, |
| 93 | + { |
| 94 | + text: '代码风格', |
| 95 | + collapsible: true, |
| 96 | + children: [ |
| 97 | + { |
| 98 | + text: 'Eslint', |
| 99 | + link: '/develop-skill/eslint' |
| 100 | + }, |
| 101 | + { |
| 102 | + text: 'Prettier', |
| 103 | + link: '/develop-skill/prettier' |
| 104 | + } |
| 105 | + ] |
| 106 | + } |
107 | 107 |
|
108 | 108 | ] |
0 commit comments