Skip to content

Commit 50da068

Browse files
author
Chu Fan
committed
feat: 版本、侧边栏更新
1 parent ee66c10 commit 50da068

4 files changed

Lines changed: 420 additions & 419 deletions

File tree

Lines changed: 100 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,105 @@
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-
text: 'CI && CD',
83-
children: [{
84-
text: 'Jenkins',
85-
link: 'code-manager/github-ci.md'
86-
}]
87-
}
88-
]
89-
},
90-
{
91-
text: '代码风格',
92-
collapsible: true,
93-
children: [
94-
{
95-
text: 'Eslint',
96-
link: 'code-style/eslint'
97-
},
98-
{
99-
text: 'Prettier',
100-
link: 'code-style/prettier'
101-
}
102-
]
103-
}
76+
},
77+
{
78+
text: 'Github && GitLab',
79+
link: 'code-manager/github.md'
80+
},
81+
{
82+
text: 'CI && CD',
83+
children: [{
84+
text: 'Jenkins',
85+
link: 'code-manager/github-ci.md'
86+
}]
87+
}
88+
]
89+
},
90+
{
91+
text: '代码风格',
92+
collapsible: true,
93+
children: [
94+
{
95+
text: 'Eslint',
96+
link: 'code-style/eslint'
97+
},
98+
{
99+
text: 'Prettier',
100+
link: 'code-style/prettier'
101+
}
102+
]
103+
}
104104

105105
]
Lines changed: 83 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,86 @@
11
export const frontEndSidebar = [
2-
{
3-
text: 'HTML',
4-
link: 'base-begin/html.md'
5-
},
6-
{
7-
text: 'CSS',
8-
link: 'base-begin/css.md'
9-
},
10-
{
11-
text: 'JavaScript',
12-
link: 'base-begin/javascript.md'
13-
},
14-
{
15-
text: '前端框架',
16-
collapsible: true,
17-
children: [
18-
{
19-
text: 'Vue',
20-
children: [{
21-
text: '安装',
22-
link: 'front-framework/vue'
23-
}]
24-
},
25-
{
26-
text: 'Nuxt',
27-
link: 'front-framework/nuxt'
28-
},
29-
{
30-
text: 'Vuepress',
31-
link: 'front-framework/nuxt'
32-
},
33-
{
34-
text: 'JQuery',
35-
link: 'front-framework/jquery'
36-
}
37-
]
38-
},
39-
{
40-
text: 'UI框架',
41-
children: [
42-
{
43-
text: 'Ant-Design-Vue',
44-
link: 'ui-framework/ant-design-vue'
45-
},
46-
{
47-
text: 'Element-UI',
48-
link: 'ui-framework/element-ui'
49-
},
50-
{
51-
text: 'IView-Design',
52-
link: 'ui-framework/iview-design'
53-
},
2+
{
3+
text: 'HTML',
4+
link: 'base-begin/html.md'
5+
},
6+
{
7+
text: 'CSS',
8+
link: 'base-begin/css.md'
9+
},
10+
{
11+
text: 'JavaScript',
12+
link: 'base-begin/javascript.md'
13+
},
14+
{
15+
text: '前端框架',
16+
collapsible: true,
17+
children: [
18+
{
19+
text: 'Vue',
20+
children: [{
21+
text: '安装',
22+
link: 'front-framework/vue'
23+
}]
24+
},
25+
{
26+
text: 'Nuxt',
27+
link: 'front-framework/nuxt'
28+
},
29+
{
30+
text: 'Vuepress',
31+
link: 'front-framework/nuxt'
32+
},
33+
{
34+
text: 'JQuery',
35+
link: 'front-framework/jquery'
36+
}
37+
]
38+
},
39+
{
40+
text: 'UI框架',
41+
children: [
42+
{
43+
text: 'Ant-Design-Vue',
44+
link: 'ui-framework/ant-design-vue'
45+
},
46+
{
47+
text: 'Element-UI',
48+
link: 'ui-framework/element-ui'
49+
},
50+
{
51+
text: 'IView-Design',
52+
link: 'ui-framework/iview-design'
53+
},
5454

55-
{
56-
text: 'VAnt-UI',
57-
link: 'ui-framework/vant-ui'
58-
},
59-
{
60-
text: 'Layer-UI',
61-
link: 'ui-framework/layer-ui'
62-
},
63-
{
64-
text: 'Bootstrap',
65-
link: 'ui-framework/bootstrap'
66-
}
67-
]
68-
},
69-
{
70-
text: '服务部署',
71-
children: [
72-
{
73-
text: '静态文件部署',
74-
link: 'server-deploy/static-nginx'
75-
},
76-
{
77-
text: '服务端渲染',
78-
link: 'server-deploy/front-end-server'
79-
},
80-
{
81-
text: 'SSR优化',
82-
link: 'server-deploy/ssr'
83-
}
84-
]
85-
}
55+
{
56+
text: 'VAnt-UI',
57+
link: 'ui-framework/vant-ui'
58+
},
59+
{
60+
text: 'Layer-UI',
61+
link: 'ui-framework/layer-ui'
62+
},
63+
{
64+
text: 'Bootstrap',
65+
link: 'ui-framework/bootstrap'
66+
}
67+
]
68+
},
69+
{
70+
text: '服务部署',
71+
children: [
72+
{
73+
text: '静态文件部署',
74+
link: 'server-deploy/static-nginx'
75+
},
76+
{
77+
text: '服务端渲染',
78+
link: 'server-deploy/front-end-server'
79+
},
80+
{
81+
text: 'SSR优化',
82+
link: 'server-deploy/ssr'
83+
}
84+
]
85+
}
8686
]

0 commit comments

Comments
 (0)