Skip to content

Commit 21c0690

Browse files
update to yarn 4.2.2 (orval-labs#1404)
1 parent 36ebf4f commit 21c0690

File tree

23 files changed

+45057
-92904
lines changed

23 files changed

+45057
-92904
lines changed

.github/workflows/tests.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
28+
- name: Enable corepack
29+
run: corepack enable
2830
- name: install
2931
run: yarn
3032
- name: build

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ npm-debug.log*
3737
yarn-debug.log*
3838
yarn-error.log*
3939
.yarn
40-
.yarnrc.yml
4140

4241
# Runtime data
4342
pids

.yarnrc.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
nodeLinker: node-modules
2+
packageExtensions:
3+
'@vue/test-utils@*':
4+
peerDependencies:
5+
vue: '*'

docs/yarn.lock

+9,032-6,126
Large diffs are not rendered by default.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@
77
"packages/*"
88
],
99
"private": true,
10+
"packageManager": "[email protected]",
1011
"scripts": {
1112
"format": "prettier --write .",
1213
"format:check": "prettier --check .",
1314
"format:staged": "lint-staged",
1415
"prerelease": "yarn build && cd ./tests && yarn generate && yarn build",
15-
"release": "dotenv release-it",
16+
"release": "yarn prerelease && dotenv release-it && yarn postrelease",
1617
"postrelease": "yarn build && yarn update-samples",
1718
"prepare": "husky",
1819
"commitlint": "commitlint",
1920
"update-samples": "zx ./scripts/update-samples.mjs",
2021
"build": "turbo run build",
2122
"test": "turbo run test",
22-
"test:ci": "yarn test -- -- --run && yarn run-s test:samples:*",
23+
"test:ci": "yarn test -- -- --run && yarn run-s 'test:samples:*'",
2324
"test:samples:vue-query": "cd ./samples/vue-query && yarn && yarn test",
2425
"test:samples:svelte-query": "cd ./samples/svelte-query && yarn && yarn test",
2526
"test:samples:react-query:basic": "cd ./samples/react-query/basic && yarn && yarn test",

0 commit comments

Comments
 (0)