Skip to content

Commit 88b70aa

Browse files
author
Chu Fan
committed
feat: 侧边栏配置更新
1 parent a23ce75 commit 88b70aa

File tree

9 files changed

+609
-609
lines changed

9 files changed

+609
-609
lines changed
Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
11
export const battleInterviewSidebar = [
2-
{
3-
text: '常见面试题',
4-
link: 'interview-problems'
5-
},
6-
{
7-
text: '面经分享',
8-
link: 'introduce-share'
9-
},
10-
{
11-
text: '工作机会',
12-
children: [
13-
{
14-
text: '校招',
15-
link: 'school-recruit'
16-
},
17-
{
18-
text: '社招',
19-
link: 'social-recruit'
20-
}
21-
]
22-
},
23-
{
24-
text: '小技巧',
25-
children: [
26-
{
27-
text: '校招',
28-
link: '/'
29-
},
30-
{
31-
text: '社招',
32-
link: '/'
33-
}
34-
]
35-
}
2+
{
3+
text: '常见面试题',
4+
link: 'interview-problems'
5+
},
6+
{
7+
text: '面经分享',
8+
link: 'introduce-share'
9+
},
10+
{
11+
text: '工作机会',
12+
children: [
13+
{
14+
text: '校招',
15+
link: 'school-recruit'
16+
},
17+
{
18+
text: '社招',
19+
link: 'social-recruit'
20+
}
21+
]
22+
},
23+
{
24+
text: '小技巧',
25+
children: [
26+
{
27+
text: '校招',
28+
link: '/'
29+
},
30+
{
31+
text: '社招',
32+
link: '/'
33+
}
34+
]
35+
}
3636
]
Lines changed: 93 additions & 93 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,98 @@
11
export const developSkillSidebar = [
2-
{
3-
text: '软件安装',
4-
link: 'software-install/readme.md'
5-
},
6-
{
7-
text: '包管理器',
8-
collapsible: true,
2+
{
3+
text: '软件安装',
4+
link: 'software-install/readme.md'
5+
},
6+
{
7+
text: '包管理器',
8+
collapsible: true,
9+
children: [
10+
{
11+
text: 'npm',
12+
link: 'npm/npm'
13+
},
14+
{
15+
text: 'pnpm',
16+
link: 'npm/pnpm'
17+
},
18+
{
19+
text: 'yarn',
20+
link: 'npm/yarn'
21+
}
22+
]
23+
},
24+
{
25+
text: 'monorepo',
26+
collapsible: true,
27+
children: [
28+
{
29+
text: 'pnpm实现',
30+
link: 'monorepo/pnpm-style.md'
31+
},
32+
{
33+
text: 'TurboRepo',
34+
link: 'monorepo/turboRepo.md'
35+
}
36+
]
37+
},
38+
{
39+
text: '编译工具',
40+
collapsible: true,
41+
children: [
42+
{
43+
text: 'webpack',
44+
link: '/'
45+
},
46+
{
47+
text: 'vite',
48+
link: '/'
49+
}
50+
]
51+
},
52+
{
53+
text: '代码管理',
54+
collapsible: true,
55+
children: [
56+
{
57+
text: 'Git',
958
children: [
10-
{
11-
text: 'npm',
12-
link: 'npm/npm'
13-
},
14-
{
15-
text: 'pnpm',
16-
link: 'npm/pnpm'
17-
},
18-
{
19-
text: 'yarn',
20-
link: 'npm/yarn'
21-
}
59+
{
60+
text: '基本操作',
61+
link: 'code-manager/git.md'
62+
},
63+
{
64+
text: '分支版本规范',
65+
link: 'code-manager/git-branch-rule.md'
66+
},
67+
{
68+
text: '提交规范',
69+
link: 'code-manager/git-commit-rule.md'
70+
},
71+
{
72+
text: '修改历史提交信息',
73+
link: 'code-manager/git-info-reset.md'
74+
}
2275
]
23-
},
24-
{
25-
text: 'monorepo',
26-
collapsible: true,
27-
children: [
28-
{
29-
text: 'pnpm实现',
30-
link: 'monorepo/pnpm-style.md'
31-
},
32-
{
33-
text: 'TurboRepo',
34-
link: 'monorepo/turboRepo.md'
35-
}
36-
]
37-
},
38-
{
39-
text: '编译工具',
40-
collapsible: true,
41-
children: [
42-
{
43-
text: 'webpack',
44-
link: '/'
45-
},
46-
{
47-
text: 'vite',
48-
link: '/'
49-
}
50-
]
51-
},
52-
{
53-
text: '代码管理',
54-
collapsible: true,
55-
children: [
56-
{
57-
text: 'Git',
58-
children: [
59-
{
60-
text: '基本操作',
61-
link: 'code-manager/git.md'
62-
},
63-
{
64-
text: '分支版本规范',
65-
link: 'code-manager/git-branch-rule.md'
66-
},
67-
{
68-
text: '提交规范',
69-
link: 'code-manager/git-commit-rule.md'
70-
},
71-
{
72-
text: '修改历史提交信息',
73-
link: 'code-manager/git-info-reset.md'
74-
}
75-
]
76-
},
77-
{
78-
text: 'Github && GitLab',
79-
link: 'code-manager/github.md'
80-
}
81-
]
82-
},
83-
{
84-
text: '代码风格',
85-
collapsible: true,
86-
children: [
87-
{
88-
text: 'Eslint',
89-
link: 'code-style/eslint'
90-
},
91-
{
92-
text: 'Prettier',
93-
link: 'code-style/prettier'
94-
}
95-
]
96-
}
76+
},
77+
{
78+
text: 'Github && GitLab',
79+
link: 'code-manager/github.md'
80+
}
81+
]
82+
},
83+
{
84+
text: '代码风格',
85+
collapsible: true,
86+
children: [
87+
{
88+
text: 'Eslint',
89+
link: 'code-style/eslint'
90+
},
91+
{
92+
text: 'Prettier',
93+
link: 'code-style/prettier'
94+
}
95+
]
96+
}
9797

9898
]

0 commit comments

Comments
 (0)