mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs: update contribution guide (#9668)
This commit is contained in:
parent
bc4175e79b
commit
d5b3350ee5
6
.github/CONTRIBUTING.md
vendored
6
.github/CONTRIBUTING.md
vendored
@ -29,9 +29,5 @@ It's welcomed to pull request, And there are some tips about that:
|
|||||||
```bash
|
```bash
|
||||||
git clone git@github.com:youzan/vant.git
|
git clone git@github.com:youzan/vant.git
|
||||||
|
|
||||||
cd packages/vant && yarn
|
yarn && yarn dev
|
||||||
|
|
||||||
npm run dev
|
|
||||||
|
|
||||||
# open http://localhost:8080
|
|
||||||
```
|
```
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ES5",
|
"target": "ES2015",
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"module": "ES2015",
|
"module": "ES2015",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ES5",
|
"target": "ES2015",
|
||||||
"outDir": "./dist/types",
|
"outDir": "./dist/types",
|
||||||
"module": "ES2015",
|
"module": "ES2015",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
@ -19,15 +19,15 @@
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 克隆仓库
|
# 克隆仓库
|
||||||
# 默认为 dev 分支,包含 Vant 3 的代码
|
# 默认为 dev 分支,对应 Vant 3 的代码
|
||||||
# 如果需要在 Vant 2 上进行更改,请基于 2.x 分支进行开发
|
# 如果需要在 Vant 2 上进行更改,请基于 2.x 分支进行开发
|
||||||
git clone git@github.com:youzan/vant.git
|
git clone git@github.com:youzan/vant.git
|
||||||
|
|
||||||
# 安装依赖
|
# 安装依赖
|
||||||
cd vant && yarn
|
yarn
|
||||||
|
|
||||||
# 进入开发模式,浏览器访问 http://localhost:8080
|
# 进入开发模式,浏览器访问 localhost
|
||||||
npm run dev
|
yarn dev
|
||||||
```
|
```
|
||||||
|
|
||||||
### 目录结构
|
### 目录结构
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
"target": "ES2019",
|
"target": "ES2015",
|
||||||
"module": "ESNext",
|
"module": "ES2015",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"noImplicitThis": true,
|
"noImplicitThis": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node"
|
||||||
},
|
},
|
||||||
"include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"]
|
"include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user