Skip to content

Commit 2abe83c

Browse files
authored
docs(README): update description (#474)
1 parent 72391eb commit 2abe83c

File tree

7 files changed

+30
-20
lines changed

7 files changed

+30
-20
lines changed

.vitepress/sidebar.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export const sidebarConfig: SidebarConfig = [
2222
{ text: '@142vip/changelog', link: '/packages/changelog/index.md' },
2323
{ text: '@142vip/release-version', link: '/packages/release-version/index.md' },
2424
{ text: '@142vip/eslint-config', link: '/packages/eslint-config/index.md' },
25+
{ text: '@142vip/commit-linter', link: '/packages/commit-linter/index.md' },
2526
],
2627
},
2728
{

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
- [`@142vip/axios`](https://www.npmjs.com/package/@142vip/axios)
1919
- [`@142vip/changelog`](https://www.npmjs.com/package/@142vip/changelog)
20+
- [`@142vip/commit-linter`](https://www.npmjs.com/package/@142vip/commit-linter)
2021
- [`@142vip/copyright`](https://www.npmjs.com/package/@142vip/copyright)
2122
- [`@142vip/egg`](https://www.npmjs.com/package/@142vip/egg)
2223
- [`@142vip/egg-axios`](https://www.npmjs.com/package/@142vip/egg-axios)

apps/egg-demo/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# egg-demo
22

3+
`@142vip/egg`相关包和插件的使用Demo
4+
35
## 证书
46

57
[MIT](https://opensource.org/license/MIT)

apps/nest-demo/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# nest-demo
22

3+
`@142vip/nest`相关包和插件的使用Demo
4+
35
## 证书
46

57
[MIT](https://opensource.org/license/MIT)

apps/vitepress-demo/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# vitepress-demo
22

3+
`@142vip/vitepress`包的使用Demo演示
4+
35
## 介绍
46

57
```bash

apps/vuepress-demo/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# vuepress-demo
22

3+
`@142vip/vuepress`包的使用Demo演示
4+
35
## 介绍
46

57
```bash

packages/vitepress/src/core/vip.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -48,26 +48,26 @@ export const vipTeamMembers = [
4848
{ icon: 'github', link: 'https://github.com/mmdapl' },
4949
],
5050
},
51-
{
52-
avatar: 'https://www.github.com/chufan443.png',
53-
name: '微信公众号:储凡',
54-
title: 'CodeReviewer',
55-
org: '142vip',
56-
orgLink: 'https://github.com/142vip',
57-
links: [
58-
{ icon: 'github', link: 'https://github.com/chufan443' },
59-
],
60-
},
61-
{
62-
avatar: 'https://www.github.com/lir0115.png',
63-
name: '公众号:Rong姐姐好可爱',
64-
title: 'Committer',
65-
org: '142vip',
66-
orgLink: 'https://github.com/142vip',
67-
links: [
68-
{ icon: 'github', link: 'https://github.com/lir0115' },
69-
],
70-
},
51+
// {
52+
// avatar: 'https://www.github.com/chufan443.png',
53+
// name: '微信公众号:储凡',
54+
// title: 'CodeReviewer',
55+
// org: '142vip',
56+
// orgLink: 'https://github.com/142vip',
57+
// links: [
58+
// { icon: 'github', link: 'https://github.com/chufan443' },
59+
// ],
60+
// },
61+
// {
62+
// avatar: 'https://www.github.com/lir0115.png',
63+
// name: '公众号:Rong姐姐好可爱',
64+
// title: 'Committer',
65+
// org: '142vip',
66+
// orgLink: 'https://github.com/142vip',
67+
// links: [
68+
// { icon: 'github', link: 'https://github.com/lir0115' },
69+
// ],
70+
// },
7171
]
7272

7373
export function pick<T, K extends keyof T>(obj: T, keys: K[]): Pick<T, K> {

0 commit comments

Comments
 (0)