chore(deps): update yarn to v4
All checks were successful
ci/woodpecker/pr/checks Pipeline was successful
ci/woodpecker/push/checks Pipeline was successful

This commit is contained in:
Renovate Bot 2023-11-05 00:01:29 +00:00 committed by Johannes Loher
parent ca88e4975d
commit 27992aa4d6
Signed by: saluu
GPG key ID: 7CB0A9FB553DA045
16 changed files with 2662 additions and 2684 deletions

View file

@ -4,7 +4,7 @@
name: Bug Report name: Bug Report
about: File a bug report about: File a bug report
labels: ["bug", "to be confirmed"] labels: ['bug', 'to be confirmed']
body: body:
- type: markdown - type: markdown
attributes: attributes:

View file

@ -4,7 +4,7 @@
name: Feature Request name: Feature Request
description: Submit a feature request description: Submit a feature request
labels: ["feature"] labels: ['feature']
body: body:
- type: markdown - type: markdown
attributes: attributes:

View file

@ -30,6 +30,7 @@ steps:
- git config user.email woodpecker[bot]@${CI_SYSTEM_HOST} - git config user.email woodpecker[bot]@${CI_SYSTEM_HOST}
- yarn bump-version --release=${RELEASE_TYPE} - yarn bump-version --release=${RELEASE_TYPE}
- export RELEASE_VERSION=$(jq -r '.version' < package.json) - export RELEASE_VERSION=$(jq -r '.version' < package.json)
- yarn prettier --write package.json module.json
- git --no-pager diff - git --no-pager diff
- git add package.json module.json - git add package.json module.json
- 'git commit -m "chore(release): $${RELEASE_VERSION}"' - 'git commit -m "chore(release): $${RELEASE_VERSION}"'

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,5 @@
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 enableGlobalCache: false

View file

@ -18,28 +18,16 @@
"version": "1.4.0", "version": "1.4.0",
"flags": { "flags": {
"hotReload": { "hotReload": {
"extensions": [ "extensions": ["css", "hbs", "json"],
"css", "paths": ["templates", "styles", "lang"]
"hbs",
"json"
],
"paths": [
"templates",
"styles",
"lang"
]
} }
}, },
"compatibility": { "compatibility": {
"minimum": "10.290", "minimum": "10.290",
"verified": "11" "verified": "11"
}, },
"esmodules": [ "esmodules": ["tickwerk.js"],
"tickwerk.js" "styles": ["styles/tickwerk.css"],
],
"styles": [
"styles/tickwerk.css"
],
"languages": [ "languages": [
{ {
"lang": "en", "lang": "en",

View file

@ -29,7 +29,7 @@
"clean:link": "node ./tools/link-package.js --clean", "clean:link": "node ./tools/link-package.js --clean",
"lint": "eslint --ext .js,.cjs,.mjs .", "lint": "eslint --ext .js,.cjs,.mjs .",
"lint:fix": "eslint --ext .js,.cjs,.mjs --fix .", "lint:fix": "eslint --ext .js,.cjs,.mjs --fix .",
"format": "prettier --write \"./**/*.(js|cjs|mjs|json|scss|yml)\"", "format": "prettier --write \"./**/*.(js|cjs|mjs|json|scss|yml|yaml)\"",
"bump-version": "node ./tools/bump-version.js", "bump-version": "node ./tools/bump-version.js",
"changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2" "changelog": "conventional-changelog -p conventionalcommits -o CHANGELOG.md -r 2"
}, },
@ -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