Skip to content

Commit

Permalink
feat: update yarn lock
Browse files Browse the repository at this point in the history
  • Loading branch information
xsf0105 committed Nov 8, 2022
1 parent 67166f7 commit 1dacf3d
Show file tree
Hide file tree
Showing 8 changed files with 76 additions and 88 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/node_modules
/scripts
/dist
2 changes: 1 addition & 1 deletion .github/workflows/deploy2io.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# - run: cd example && npm i --legacy-peer-deps && npm run build
- run: yarn
- run: yarn run link
- run: yarn push2GithubWebsite
- run: yarn push2io
- name : Sync
uses : JamesIves/[email protected]
with :
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ node_modules
/cache
/.nyc_output
/coverage

# local env files
.env.local
.env.*.local
Expand Down
13 changes: 2 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,13 @@ We are very welcome to the community developers to make contributions to Quark D
First start:

```bash
// Install the dependencies of the sub-project
yarn

// First execution, mutual dependency soft link
yarn run link

// Start executing the project
yarn dev
npm run init
npm run dev
```

After that, just run the following command:

```bash
yarn dev

// or
npm run dev
```

Expand Down
10 changes: 2 additions & 8 deletions CONTRIBUTING.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,13 @@
第一次启动:

```bash
yarn // 安装项目的依赖

yarn run link // 第一次执行需要,互相依赖的软链接

yarn dev // 开始执行工程
npm run init
npm run dev
```

以后再次启动本工程只需:

```bash
yarn dev

// or
npm run dev
```

Expand Down
27 changes: 14 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"init": "yarn && yarn run link",
"dev": "node ./scripts/dev",
"link": "node ./scripts/link",
"clean": "lerna clean -y",
"prepare": "husky install",
"copydocs": "node ./scripts/copydocs",
"push2GithubWebsite": "node ./scripts/push2GithubWebsite",
"push2io": "node ./scripts/push2io",
"release:patch": "node ./scripts/publish patch",
"release:minor": "node ./scripts/publish minor",
"release:major": "node ./scripts/publish major"
Expand All @@ -38,9 +38,10 @@
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"lerna": "^5.1.8",
"lint-staged": "^10.5.4",
"lint-staged": "^10.5.4",
"ora": "^5.1.2",
"prettier": "^2.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"vue": "^3.0.5",
"vue-router": "^4.0.4"
Expand All @@ -50,14 +51,14 @@
"path": "node_modules/cz-customizable"
}
},
"lint-staged": {
"src/**/*.{vue, js,jsx,ts,tsx,json}": [
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
"lint-staged": {
"src/**/*.{vue, js,jsx,ts,tsx,json}": [
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}
File renamed without changes.
Loading

0 comments on commit 1dacf3d

Please sign in to comment.