chore(deps): update yarn to v4
Some checks failed
ci/woodpecker/pr/checks Pipeline failed

This commit is contained in:
Renovate Bot 2023-11-05 00:01:29 +00:00 committed by Johannes Loher
parent ca88e4975d
commit 3ca06df8ff
Signed by: saluu
GPG key ID: 7CB0A9FB553DA045
11 changed files with 2482 additions and 2495 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

893
.yarn/releases/yarn-4.0.1.cjs vendored Executable file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,20 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = createRequire(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require eslint/use-at-your-own-risk
require(absPnpApiPath).setup();
}
}
// Defer to the real eslint/use-at-your-own-risk your application uses
module.exports = absRequire(`eslint/use-at-your-own-risk`);

View file

@ -1,6 +1,14 @@
{ {
"name": "eslint", "name": "eslint",
"version": "8.42.0-sdk", "version": "8.52.0-sdk",
"main": "./lib/api.js", "main": "./lib/api.js",
"type": "commonjs" "type": "commonjs",
"bin": {
"eslint": "./bin/eslint.js"
},
"exports": {
"./package.json": "./package.json",
".": "./lib/api.js",
"./use-at-your-own-risk": "./lib/unsupported-api.js"
}
} }

20
.yarn/sdks/prettier/bin-prettier.js vendored Executable file
View file

@ -0,0 +1,20 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = createRequire(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require prettier/bin-prettier.js
require(absPnpApiPath).setup();
}
}
// Defer to the real prettier/bin-prettier.js your application uses
module.exports = absRequire(`prettier/bin-prettier.js`);

0
.yarn/sdks/prettier/index.js vendored Executable file → Normal file
View file

View file

@ -2,5 +2,6 @@
"name": "prettier", "name": "prettier",
"version": "2.8.8-sdk", "version": "2.8.8-sdk",
"main": "./index.js", "main": "./index.js",
"type": "commonjs" "type": "commonjs",
"bin": "./bin-prettier.js"
} }

View file

@ -1,7 +1,3 @@
nodeLinker: pnp nodeLinker: pnp
plugins: yarnPath: .yarn/releases/yarn-4.0.1.cjs
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-3.6.4.cjs

View file

@ -54,5 +54,5 @@
"semver": "7.5.4", "semver": "7.5.4",
"yargs": "17.7.2" "yargs": "17.7.2"
}, },
"packageManager": "yarn@3.6.4" "packageManager": "yarn@4.0.1"
} }

3070
yarn.lock

File diff suppressed because it is too large Load diff