Skip to content

Commit ccb0cc3

Browse files
committed
init
0 parents  commit ccb0cc3

File tree

733 files changed

+45546
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

733 files changed

+45546
-0
lines changed

.commitlintrc.cjs

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const fs = require('fs')
2+
const path = require('path')
3+
4+
const getSubDirectories = (dir) => fs.readdirSync(dir).filter(item => fs.statSync(path.join(dir, item)).isDirectory())
5+
const corePackages = getSubDirectories(path.resolve(__dirname, 'packages'))
6+
const ecosystemPackages = getSubDirectories(path.resolve(__dirname, 'ecosystem'))
7+
8+
module.exports = {
9+
extends: ['@commitlint/config-conventional'],
10+
rules: {
11+
'scope-enum': [
12+
2,
13+
'always',
14+
[...corePackages, ...ecosystemPackages],
15+
],
16+
'footer-max-line-length': [0],
17+
},
18+
}

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitattributes

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
* text eol=lf
2+
*.txt text eol=crlf
3+
4+
*.png binary
5+
*.jpg binary
6+
*.jpeg binary
7+
*.ico binary
8+
*.tff binary
9+
*.woff binary
10+
*.woff2 binary

.gitignore

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# VuePress files
2+
docs/.vuepress/.temp/
3+
docs/.vuepress/.cache/
4+
docs/.vuepress/dist/
5+
6+
# Dist files
7+
dist/
8+
lib/
9+
10+
# Test temp files
11+
**/__fixtures__/.temp/
12+
13+
# Test coverage files
14+
coverage/
15+
16+
# Node modules
17+
node_modules/
18+
19+
# MacOS Desktop Services Store
20+
.DS_Store
21+
22+
# Log files
23+
*.log
24+
25+
# Typescript build info
26+
*.tsbuildinfo
27+
28+
.idea/

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018-present, Yuxi (Evan) You
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# 杭电助手开发文档
2+
3+
本仓库是杭电助手文档项目,基于[vuepress2](https://v2.vuepress.vuejs.org/zh/)构建。
4+
5+
### 2、本地克隆代码开发
6+
7+
```sh
8+
git clone [email protected]:hduhelp/open-docs.git
9+
cd bot-docs
10+
pnpm install
11+
pnpm docs:dev
12+
```
13+
更多命令请见 [contributing.md](./contributing.md)
14+
15+
## 3.文档结构参考
16+
17+
[contributing.md](./contributing.md)
18+
19+
## 参与共建 [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
20+
21+
- 👏 如果您有针对文档的错误修复,请以分支`fix/xxx``main`分支发 PR
22+
- 👏 如果您有新的内容贡献,请以分支`feature/xxx``main`分支发起 PR
23+
- 👏 如果您有相关的建议或意见,请提[issues](https://github.com/hduhelp/open-docs/issues)
24+
25+
## 贡献者
26+
27+
<!-- prettier-ignore-start -->
28+
<!-- markdownlint-disable -->
29+
<a href="https://github.com/hduhelp/open-docs/graphs/contributors">
30+
<img src="https://contrib.rocks/image?repo=hduhelp/open-docs" />
31+
</a>
32+
<!-- markdownlint-restore -->
33+
<!-- prettier-ignore-end -->

contributing.md

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
---
2+
sidebar: auto
3+
---
4+
5+
# 贡献指南
6+
7+
## 概览
8+
9+
项目仓库借助于 [pnpm 工作空间](https://pnpm.io/zh/workspaces) 来实现 [Monorepo](https://en.wikipedia.org/wiki/Monorepo) ,存放了多个互相关联的独立 Package 。
10+
11+
`packages` 目录下:
12+
13+
- `bundler-vite`: 基于 Vite 的 Bundler 模块。使用 Vite 对 VuePress App 执行 `dev``build` 操作。
14+
- `bundler-webpack`: 基于 Webpack 的 Bundler 模块。使用 Webpack 对 VuePress App 执行 `dev``build` 操作。
15+
- `cli`: 命令行接口 (CLI) 模块。包含解析用户配置文件、调用 `@vuepress/core` 创建 VuePress App 、执行对应命令等功能。
16+
- `client`: Client 模块。包含客户端页面入口,并提供了客户端开发时可以用到的类型和工具函数。
17+
- `core`: Core 模块。提供 Node API 来创建 VuePress App ,包括页面逻辑、插件系统、数据准备等功能。
18+
- `markdown`: Markdown 模块。使用 `markdown-it` 作为 Markdown 解析器,并集成了一些 VuePress 中用到的插件。
19+
- `shared`: 既可以在 Node 端使用、也可以在客户端使用的工具函数模块。
20+
- `utils`: 仅可以在 Node 端使用的工具函数模块。
21+
22+
`ecosystem` 目录下:
23+
24+
- `plugin-${name}`: 官方插件。
25+
- `theme-default`: 默认主题。
26+
- `vuepress`: 是 `vuepress-vite` 的封装。
27+
- `vuepress-vite`: 是 `@vuepress/cli` + `@vuepress/bundler-vite` + `@vuepress/theme-default` 的封装。如果用户想使用 默认主题 + Vite ,仅安装这个 Package 就可以了。
28+
- `vuepress-webpack`: 是 `@vuepress/cli` + `@vuepress/bundler-webpack` + `@vuepress/theme-default` 的封装。如果用户想使用 默认主题 + Webpack ,仅安装这个 Package 就可以了。
29+
30+
## 开发配置
31+
32+
开发要求:
33+
34+
- [Node.js](http://nodejs.org) **version 14.18.0+**
35+
- [pnpm](https://pnpm.io/zh/) **version 7+**
36+
37+
克隆代码仓库,并安装依赖:
38+
39+
```bash
40+
pnpm install
41+
```
42+
43+
构建源代码:
44+
45+
```bash
46+
pnpm build
47+
```
48+
49+
开始开发项目文档网站:
50+
51+
```bash
52+
pnpm docs:dev
53+
```
54+
55+
本项目开发使用的一些主要工具:
56+
57+
- [TypeScript](https://www.typescriptlang.org/) 作为开发语言
58+
- [Vitest](https://vitest.dev/) 用于单元测试
59+
- [ESLint](https://eslint.org/) + [Prettier](https://prettier.io/) 用于代码检查和格式化
60+
61+
## 开发脚本
62+
63+
### `pnpm build`
64+
65+
`build` 命令会使用 `tsc``tsup` 将 TypeScript 源文件编译为 JavaScript 文件。
66+
67+
此外,它还会将必要的资源文件从源文件目录复制到输出目录。这是因为一些资源文件不会被 `tsc``tsup` 处理,但它们仍需要被放置到输出目录,并保持它们的项目对路径不变。
68+
69+
你在克隆代码仓库后,可能需要先执行该命令来确保项目代码可以顺利运行,因为编译后的输出目录被 `.gitignore` 排除在仓库以外了。
70+
71+
### `pnpm clean`
72+
73+
`clean` 命令会执行所有子 Package 中的 `clean` 命令,清除所有的输出文件目录和缓存文件。换言之,它将移除所有通过 `build``copy` 命令生成的文件。
74+
75+
当你想要从最初状态重新构建源代码时,你可以执行该命令。
76+
77+
### `pnpm dev:*`
78+
79+
`dev:` 前缀表明,这些命令是针对开发使用的,将会以监听模式运行对应的脚本。
80+
81+
### `pnpm docs:*`
82+
83+
#### `pnpm docs:build`, `pnpm docs:dev`, `pnpm docs:clean`
84+
85+
`docs:` 前缀表明,这些命令是针对文档 (documentation) 进行操作的,即 `docs` 目录。
86+
87+
VuePress 使用它自己来构建自己的文档网站。
88+
89+
你需要先执行 `pnpm build` 来构建 VuePress 源代码,然后再运行这些 `docs:` 开头的命令来开发或构建文档。
90+
91+
#### `pnpm docs:serve`
92+
93+
在本地启动文档网站服务器。
94+
95+
你需要先运行 `pnpm docs:build` 来生成文档网站的输出文件,然后再通过该命令来启动文档网站。
96+
97+
### `pnpm lint`
98+
99+
`lint` 命令使用 ESLint 来检查所有源文件。
100+
101+
### `pnpm test`
102+
103+
`test` 命令使用 Vitest 来运行单元测试。
104+
105+
## 文档
106+
107+
VuePress 的文档是由 VuePress 自己驱动的,是由该仓库中的源码构建而来。
108+
109+
所有的 Markdown 源文件都放置在 `docs` 目录下。
+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<script setup lang="ts">
2+
import { computed } from 'vue'
3+
4+
const props = defineProps({
5+
package: {
6+
type: String,
7+
required: true,
8+
},
9+
distTag: {
10+
type: String,
11+
required: false,
12+
default: 'next',
13+
},
14+
})
15+
16+
const badgeLink = computed(
17+
() => `https://www.npmjs.com/package/${props.package}`
18+
)
19+
const badgeLabel = computed(() => {
20+
if (props.distTag) {
21+
return `${props.package}@${props.distTag}`
22+
}
23+
return props.package
24+
})
25+
const badgeImg = computed(
26+
() =>
27+
`https://badgen.net/npm/v/${props.package}/${
28+
props.distTag
29+
}?label=${encodeURIComponent(badgeLabel.value)}`
30+
)
31+
</script>
32+
33+
<template>
34+
<a
35+
class="npm-badge"
36+
:href="badgeLink"
37+
:title="package"
38+
target="_blank"
39+
rel="noopener noreferrer"
40+
>
41+
<img :src="badgeImg" :alt="package" />
42+
</a>
43+
</template>
44+
45+
<style scoped>
46+
.npm-badge {
47+
margin-right: 0.5rem;
48+
}
49+
</style>

0 commit comments

Comments
 (0)