mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +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
|
||||
git clone git@github.com:youzan/vant.git
|
||||
|
||||
cd packages/vant && yarn
|
||||
|
||||
npm run dev
|
||||
|
||||
# open http://localhost:8080
|
||||
yarn && yarn dev
|
||||
```
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES5",
|
||||
"target": "ES2015",
|
||||
"outDir": "./dist",
|
||||
"module": "ES2015",
|
||||
"strict": true,
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES5",
|
||||
"target": "ES2015",
|
||||
"outDir": "./dist/types",
|
||||
"module": "ES2015",
|
||||
"strict": true,
|
||||
|
@ -19,15 +19,15 @@
|
||||
|
||||
```bash
|
||||
# 克隆仓库
|
||||
# 默认为 dev 分支,包含 Vant 3 的代码
|
||||
# 默认为 dev 分支,对应 Vant 3 的代码
|
||||
# 如果需要在 Vant 2 上进行更改,请基于 2.x 分支进行开发
|
||||
git clone git@github.com:youzan/vant.git
|
||||
|
||||
# 安装依赖
|
||||
cd vant && yarn
|
||||
yarn
|
||||
|
||||
# 进入开发模式,浏览器访问 http://localhost:8080
|
||||
npm run dev
|
||||
# 进入开发模式,浏览器访问 localhost
|
||||
yarn dev
|
||||
```
|
||||
|
||||
### 目录结构
|
||||
|
@ -2,14 +2,14 @@
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"jsx": "preserve",
|
||||
"target": "ES2019",
|
||||
"module": "ESNext",
|
||||
"target": "ES2015",
|
||||
"module": "ES2015",
|
||||
"strict": true,
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"noImplicitThis": true,
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "node",
|
||||
"moduleResolution": "node"
|
||||
},
|
||||
"include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user