From d5b3350ee592a54fb066999d82eb77d47c108b78 Mon Sep 17 00:00:00 2001 From: neverland Date: Tue, 12 Oct 2021 19:39:34 +0800 Subject: [PATCH] docs: update contribution guide (#9668) --- .github/CONTRIBUTING.md | 6 +----- packages/vant-popperjs/tsconfig.json | 2 +- packages/vant-use/tsconfig.json | 2 +- packages/vant/docs/markdown/contribution.zh-CN.md | 8 ++++---- packages/vant/tsconfig.json | 6 +++--- 5 files changed, 10 insertions(+), 14 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index ec5e2d3ba..6adaf97e0 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -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 ``` diff --git a/packages/vant-popperjs/tsconfig.json b/packages/vant-popperjs/tsconfig.json index 3526c0d68..f7f1373d7 100644 --- a/packages/vant-popperjs/tsconfig.json +++ b/packages/vant-popperjs/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ES5", + "target": "ES2015", "outDir": "./dist", "module": "ES2015", "strict": true, diff --git a/packages/vant-use/tsconfig.json b/packages/vant-use/tsconfig.json index ccd1b3e65..0137ed67d 100644 --- a/packages/vant-use/tsconfig.json +++ b/packages/vant-use/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ES5", + "target": "ES2015", "outDir": "./dist/types", "module": "ES2015", "strict": true, diff --git a/packages/vant/docs/markdown/contribution.zh-CN.md b/packages/vant/docs/markdown/contribution.zh-CN.md index 145f37a94..3b0d8d0ea 100644 --- a/packages/vant/docs/markdown/contribution.zh-CN.md +++ b/packages/vant/docs/markdown/contribution.zh-CN.md @@ -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 ``` ### 目录结构 diff --git a/packages/vant/tsconfig.json b/packages/vant/tsconfig.json index 30ac41bd0..2c59f54fd 100644 --- a/packages/vant/tsconfig.json +++ b/packages/vant/tsconfig.json @@ -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/**/*"] }