Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to yarn 4.2.2 #1404

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Enable corepack
run: corepack enable
- name: install
run: yarn
- name: build
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
.yarn
.yarnrc.yml

# Runtime data
pids
Expand Down
5 changes: 5 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
nodeLinker: node-modules
packageExtensions:
'@vue/test-utils@*':
peerDependencies:
vue: '*'
15,158 changes: 9,032 additions & 6,126 deletions docs/yarn.lock

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,20 @@
"packages/*"
],
"private": true,
"packageManager": "[email protected]",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:staged": "lint-staged",
"prerelease": "yarn build && cd ./tests && yarn generate && yarn build",
"release": "dotenv release-it",
"release": "yarn prerelease && dotenv release-it && yarn postrelease",
"postrelease": "yarn build && yarn update-samples",
"prepare": "husky",
"commitlint": "commitlint",
"update-samples": "zx ./scripts/update-samples.mjs",
"build": "turbo run build",
"test": "turbo run test",
"test:ci": "yarn test -- -- --run && yarn run-s test:samples:*",
"test:ci": "yarn test -- -- --run && yarn run-s 'test:samples:*'",
"test:samples:vue-query": "cd ./samples/vue-query && yarn && yarn test",
"test:samples:svelte-query": "cd ./samples/svelte-query && yarn && yarn test",
"test:samples:react-query:basic": "cd ./samples/react-query/basic && yarn && yarn test",
Expand Down
Loading