chore: update yarn and sdks

This commit is contained in:
Johannes Loher 2023-07-10 01:24:08 +02:00
parent 261d7a8b5a
commit 753b934534
Signed by: saluu
GPG Key ID: 7CB0A9FB553DA045
8 changed files with 173 additions and 171 deletions

View File

@ -4,5 +4,5 @@
"**/.pnp.*": true
},
"eslint.nodePath": ".yarn/sdks",
"prettier.prettierPath": ".yarn/sdks/prettier/index.js",
"prettier.prettierPath": ".yarn/sdks/prettier/index.js"
}

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{
"name": "eslint",
"version": "8.28.0-sdk",
"version": "8.42.0-sdk",
"main": "./lib/api.js",
"type": "commonjs"
}

View File

@ -11,10 +11,10 @@ const absRequire = createRequire(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require prettier/index.js
// Setup the environment to be able to require prettier
require(absPnpApiPath).setup();
}
}
// Defer to the real prettier/index.js your application uses
module.exports = absRequire(`prettier/index.js`);
// Defer to the real prettier your application uses
module.exports = absRequire(`prettier`);

View File

@ -1,6 +1,6 @@
{
"name": "prettier",
"version": "2.8.0-sdk",
"version": "2.8.8-sdk",
"main": "./index.js",
"type": "commonjs"
}

View File

@ -2,6 +2,6 @@ nodeLinker: pnp
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: '@yarnpkg/plugin-interactive-tools'
spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-3.6.0.cjs
yarnPath: .yarn/releases/yarn-3.6.1.cjs

View File

@ -16,16 +16,18 @@
"bugs": "https://git.f3l.de/dungeonslayers/tickwerk/issues",
"changelog": "https://git.f3l.de/dungeonslayers/tickwerk/releases/tag/1.3.3",
"version": "1.3.3",
"flags": {
"hotReload": {
"extensions": ["css", "hbs", "json"],
"paths": ["templates", "css", "lang"]
}
},
"compatibility": {
"minimum": "10.290",
"verified": "10"
},
"esmodules": [
"tickwerk.js"
],
"styles": [
"styles/tickwerk.css"
],
"esmodules": ["tickwerk.js"],
"styles": ["styles/tickwerk.css"],
"languages": [
{
"lang": "en",

View File

@ -54,5 +54,5 @@
"semver": "7.5.1",
"yargs": "17.7.2"
},
"packageManager": "yarn@3.6.0"
"packageManager": "yarn@3.6.1"
}