From b285daf8fc9b0754a966e1e18ac0cdb0d622fed7 Mon Sep 17 00:00:00 2001 From: Nicolas Hedger Date: Sat, 13 Jan 2024 18:49:33 +0100 Subject: [PATCH 01/23] chore: add tag script --- scripts/tag-github-action.mjs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 scripts/tag-github-action.mjs diff --git a/scripts/tag-github-action.mjs b/scripts/tag-github-action.mjs new file mode 100644 index 0000000..f58e82b --- /dev/null +++ b/scripts/tag-github-action.mjs @@ -0,0 +1,29 @@ +import { spawnSync } from "child_process"; +import { exit } from "process"; +import { parse } from "semver"; + +const version = parse(process.argv[2]); + +if (!version) { + console.error(`Invalid version provided: ${version}`); + console.info( + "Version must be a valid semver version in the format of MAJOR.MINOR.PATCH", + ); + exit(1); +} + +const tags = [ + `v${version.major}`, + `v${version.major}.${version.minor}`, + `v${version.major}.${version.minor}.${version.patch}`, +]; + +console.info("Creating tags..."); +for (const tag of tags) { + spawnSync("git", ["tag", tag, "--force", `--message="chore: tag ${tag}"`]); + console.info(`- Created tag: ${tag}`); +} + +console.info( + "Tags created successfully. Run `git push --tags --force` to push them to the remote.", +); From a4efdad0e2efb442ade7fb0fa59c53d7453eec92 Mon Sep 17 00:00:00 2001 From: Nicolas Hedger Date: Sat, 13 Jan 2024 18:58:23 +0100 Subject: [PATCH 02/23] docs(contributing): add release instructions --- CONTRIBUTING.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1a5989a..edffa60 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -49,4 +49,15 @@ following guidelines before making your contribution. 1. **Create a pull request**. Once you are done making your changes, push your branch to your fork and create a pull request. Please ensure that the title of your pull request follows the [conventional commits][cc-link] specification. -[cc-link]: https://www.conventionalcommits.org/en/v1.0.0/ \ No newline at end of file +[cc-link]: https://www.conventionalcommits.org/en/v1.0.0/ + +## Maintainers + +This section is intended for maintainers of this project. + +### Releasing a new version + +1. Make sure you're on the `main` branch that it's up to date with the remote. +2. Run `pnpm tag vX.Y.Z` to tag the current commit with the version number. This will automatically create the corresponding "short tags" (e.g. `v1`, `v1.0`, `v1.0.0`) and make them point to the same commit. +3. Run `git push --tags --force` to push the tags to the remote. +4. Create a new release on GitHub, and **choose the full-version tag** (e.g. `v1.0.0`) as the target. \ No newline at end of file From d40044e5c165db26b2b867433c9bcfc4b4319d21 Mon Sep 17 00:00:00 2001 From: Nicolas Hedger Date: Sat, 13 Jan 2024 18:59:36 +0100 Subject: [PATCH 03/23] chore: run package pre-commit only when src changes --- lefthook.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/lefthook.yml b/lefthook.yml index 71e087d..8632139 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -1,4 +1,5 @@ pre-commit: commands: package: + glob: src/**/* run: pnpm run build && pnpm run package && git add dist/* From dbe60c6a30ed0e6d13026657e2b2a795fb801d47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jan 2024 14:34:29 +0100 Subject: [PATCH 04/23] chore(deps-dev): bump lefthook from 1.5.5 to 1.5.6 (#42) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 64 +++++++++++++++++++++++++------------------------- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/package.json b/package.json index 51f234e..d05b616 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "@types/node": "^16.18.70", "@types/semver": "^7.5.6", "@vercel/ncc": "^0.38.1", - "lefthook": "^1.5.5", + "lefthook": "^1.5.6", "typescript": "^5.3.3", "unbuild": "^2.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 47d91d8..b83d2d0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,9 +1,5 @@ lockfileVersion: '6.0' -settings: - autoInstallPeers: true - excludeLinksFromLockfile: false - dependencies: '@actions/core': specifier: ^1.10.1 @@ -47,8 +43,8 @@ devDependencies: specifier: ^0.38.1 version: 0.38.1 lefthook: - specifier: ^1.5.5 - version: 1.5.5 + specifier: ^1.5.6 + version: 1.5.6 typescript: specifier: ^5.3.3 version: 5.3.3 @@ -1491,83 +1487,83 @@ packages: graceful-fs: 4.2.11 dev: true - /lefthook-darwin-arm64@1.5.5: - resolution: {integrity: sha512-IkEPhY34dsjch1vB/NQXaLd8d9Y9K6iYzgFHq8Bb7tecYQ1FxGddrdGrRESuYgan3HORpcpV9R+JSaY+j0o/sQ==} + /lefthook-darwin-arm64@1.5.6: + resolution: {integrity: sha512-BmbBARLGQa7enzuLv/Co5CkEkDBvravwlJ76oJBGZlej4RiDv5xvZeF/3T1OiXWLQEPXsMrbZkniyF/yR+BD/Q==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-darwin-x64@1.5.5: - resolution: {integrity: sha512-lWpfj2QFfkJrI4gwVJIfdQ5e0bDtsptvJPAt61ZY9pOo97fRc7EmnQQqmy821dIVgmKtKKCUIs308272CrqNJw==} + /lefthook-darwin-x64@1.5.6: + resolution: {integrity: sha512-mz0GDqB1oIUCaojwyJ2xelBSfIwBJM54YEwKthkArFDxRUovSlXLY4n6d5Br44Hmvhe4O/PtAirozeDd0oUNFg==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-freebsd-arm64@1.5.5: - resolution: {integrity: sha512-E3U+PIdyt67UAPhW8ByXj7FWIRP1746DiMX8nIdSlkw4+zbNKcNKSlPhvexP/R2AuZ4cdXdg6j/MvDOWFxg3YA==} + /lefthook-freebsd-arm64@1.5.6: + resolution: {integrity: sha512-XtNV9pTkdJVq1Xf9fSS2rRhXr1z/wK8/hwepHEZXKm9hBhznfWwKoJ0E1wYE6smdbyjQWlQafko7uksGP9P7uA==} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-freebsd-x64@1.5.5: - resolution: {integrity: sha512-WvV8lneJcWKkDzzgz2kwXYjCGUL7A7oYgo4OWixjnwdl5zSNfYbdxOrz+j1PtKSP9kNp1AARDf1sXdMHoA9jfA==} + /lefthook-freebsd-x64@1.5.6: + resolution: {integrity: sha512-OOx7SZ54wN/5bOPgJEGYws3hs1GcMDDK+oAfJO+PLT8MtEc4YP1m6nb1T2n3LNSPUTwjTzirGYH7OoKJCFgzCQ==} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-linux-arm64@1.5.5: - resolution: {integrity: sha512-+Mru3ssBbeUDM4zYvn8/791t0YCYGkLJJKtBTwKv65/mDEglDOTOX1uN+d/WQ24761LXyVKnUAFXa+PIyexTzw==} + /lefthook-linux-arm64@1.5.6: + resolution: {integrity: sha512-fFKUGfW6jEEtkyRe9BSgkavUPeP59eeN1C+s7DUuqKIZSdFxhJCu+s9K20CrFPrAC+yyr755AADthh4bXJJPMg==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-linux-x64@1.5.5: - resolution: {integrity: sha512-p8Ts8SE1p34Bh4qu8Fx1IOObZnp6JxaV6Y3H2vVfyq8tUj3xYxvSht2P3sJOrkQNvyEEcPQhxfZ761TlLfxSaw==} + /lefthook-linux-x64@1.5.6: + resolution: {integrity: sha512-nI9y748+URw6zF71Qe+fpSO9X4uhFqR7nqjn6W+FyKyl+Bgju4Ct5DS9+8htE+EpfXHKerzrIsv1AYdAWSqK9w==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-windows-arm64@1.5.5: - resolution: {integrity: sha512-ofuBiOIdEdpXJyU4fb9m3rVj93Rmlj/XdyhcjE2SOQAZe3Sso+uFr0hQ2x8UEM7fLRQLuhUuLMYwEWFmg+aTAQ==} + /lefthook-windows-arm64@1.5.6: + resolution: {integrity: sha512-WiU4d0xXGbc3dlQM1meTmj/vuf/oUV3/jyz+aBVG3yc4axZBfqqWEqpWWrsHtel9NbnHX4b9g4+GoRd3+d2e9w==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook-windows-x64@1.5.5: - resolution: {integrity: sha512-bMq/MDRHeN+IOsw7UgKEdSxQmQ+p5S1mTUqnDxsVsgMFYSuxApelXhNGLs50MRAI/IeZGwBL/4JJCuN1RJFW+w==} + /lefthook-windows-x64@1.5.6: + resolution: {integrity: sha512-Em3BdysBxKmJvpV9f5pBB80ME5csA6TEc5HQeL6lEj0FbJI6XRROELjBN52826JND4OxClmVwpOoKPIzbI9hVQ==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook@1.5.5: - resolution: {integrity: sha512-bq1GfvldJWwALkOufR5mIZhxxKcNmjzg8Ve1zANMgpXteuF13k1y2FeMeYuvwzzzRk+URcsiVh0dfMPA4/6wjg==} + /lefthook@1.5.6: + resolution: {integrity: sha512-3gSYpZNpG/Wd1EAKWocGDe7DKcKX02JaoZdA2fTqPJ0LBEWcCQkTvR5D2OsV2S5lJ1QAj3EdX1V+lt4o9wNNeg==} hasBin: true requiresBuild: true optionalDependencies: - lefthook-darwin-arm64: 1.5.5 - lefthook-darwin-x64: 1.5.5 - lefthook-freebsd-arm64: 1.5.5 - lefthook-freebsd-x64: 1.5.5 - lefthook-linux-arm64: 1.5.5 - lefthook-linux-x64: 1.5.5 - lefthook-windows-arm64: 1.5.5 - lefthook-windows-x64: 1.5.5 + lefthook-darwin-arm64: 1.5.6 + lefthook-darwin-x64: 1.5.6 + lefthook-freebsd-arm64: 1.5.6 + lefthook-freebsd-x64: 1.5.6 + lefthook-linux-arm64: 1.5.6 + lefthook-linux-x64: 1.5.6 + lefthook-windows-arm64: 1.5.6 + lefthook-windows-x64: 1.5.6 dev: true /lru-cache@5.1.1: @@ -1914,3 +1910,7 @@ packages: resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} engines: {node: '>= 14'} dev: false + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false From 10800ad2050b89406bc4c37dc8a6842af8d6efb3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:52:25 +0100 Subject: [PATCH 05/23] chore(deps-dev): bump lefthook from 1.5.6 to 1.5.7 (#45) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 56 +++++++++++++++++++++++++------------------------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/package.json b/package.json index d05b616..f0606a6 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "@types/node": "^16.18.70", "@types/semver": "^7.5.6", "@vercel/ncc": "^0.38.1", - "lefthook": "^1.5.6", + "lefthook": "^1.5.7", "typescript": "^5.3.3", "unbuild": "^2.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b83d2d0..9cb9787 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,8 +43,8 @@ devDependencies: specifier: ^0.38.1 version: 0.38.1 lefthook: - specifier: ^1.5.6 - version: 1.5.6 + specifier: ^1.5.7 + version: 1.5.7 typescript: specifier: ^5.3.3 version: 5.3.3 @@ -1487,83 +1487,83 @@ packages: graceful-fs: 4.2.11 dev: true - /lefthook-darwin-arm64@1.5.6: - resolution: {integrity: sha512-BmbBARLGQa7enzuLv/Co5CkEkDBvravwlJ76oJBGZlej4RiDv5xvZeF/3T1OiXWLQEPXsMrbZkniyF/yR+BD/Q==} + /lefthook-darwin-arm64@1.5.7: + resolution: {integrity: sha512-QfyiKim+SkN5JL0E4pAmEk+e+ubE5ToOSz58AP4TcgQ5RQ00xwmYJdQKqxPL9OmbyrKYWmAXjuvMf9YZQ6rzVA==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-darwin-x64@1.5.6: - resolution: {integrity: sha512-mz0GDqB1oIUCaojwyJ2xelBSfIwBJM54YEwKthkArFDxRUovSlXLY4n6d5Br44Hmvhe4O/PtAirozeDd0oUNFg==} + /lefthook-darwin-x64@1.5.7: + resolution: {integrity: sha512-ThDqidLarJc+GIWTrwEp8YDtM1OhL9oHpF6HremEUmaHuinM3ba193mQsCbsRU3LgUjZ4s1+hQrulq49pwYdRg==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-freebsd-arm64@1.5.6: - resolution: {integrity: sha512-XtNV9pTkdJVq1Xf9fSS2rRhXr1z/wK8/hwepHEZXKm9hBhznfWwKoJ0E1wYE6smdbyjQWlQafko7uksGP9P7uA==} + /lefthook-freebsd-arm64@1.5.7: + resolution: {integrity: sha512-+rmVU1ad61CnQIfK+aricfUyJ7GCEuhOAoPVa7en0uY1yP/tJmh4sqlZ/PGuElsqLBZCi7EscI0mV/EvegPwaQ==} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-freebsd-x64@1.5.6: - resolution: {integrity: sha512-OOx7SZ54wN/5bOPgJEGYws3hs1GcMDDK+oAfJO+PLT8MtEc4YP1m6nb1T2n3LNSPUTwjTzirGYH7OoKJCFgzCQ==} + /lefthook-freebsd-x64@1.5.7: + resolution: {integrity: sha512-GSOsrsF5QOHS/1gwr83ZEXIpfe4jl75YVmYKHmYQabqW9JB+LCXlktt6PDnKZE7ovNRfFtnueCYfvMCsWLRaJA==} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-linux-arm64@1.5.6: - resolution: {integrity: sha512-fFKUGfW6jEEtkyRe9BSgkavUPeP59eeN1C+s7DUuqKIZSdFxhJCu+s9K20CrFPrAC+yyr755AADthh4bXJJPMg==} + /lefthook-linux-arm64@1.5.7: + resolution: {integrity: sha512-MJ2dkvyqMmJSi5pXwDibqkVTAzqSGV/Ae9ThLNA6/yA3/QD9QovPoQ+nOvbCIoyDcUmxTPJyz5p7X1qXtHD9vw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-linux-x64@1.5.6: - resolution: {integrity: sha512-nI9y748+URw6zF71Qe+fpSO9X4uhFqR7nqjn6W+FyKyl+Bgju4Ct5DS9+8htE+EpfXHKerzrIsv1AYdAWSqK9w==} + /lefthook-linux-x64@1.5.7: + resolution: {integrity: sha512-Pus26oI9t8DYz+2bXHBrr/iuqL23epHXD9GufsGysNGEUY59iYG5JqQhXidueVhPm/DHcdv3IFzDrsHMDFEGlw==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-windows-arm64@1.5.6: - resolution: {integrity: sha512-WiU4d0xXGbc3dlQM1meTmj/vuf/oUV3/jyz+aBVG3yc4axZBfqqWEqpWWrsHtel9NbnHX4b9g4+GoRd3+d2e9w==} + /lefthook-windows-arm64@1.5.7: + resolution: {integrity: sha512-1aIuyNnnhSHUJiFqFonivGE02a/pjXCkvXIYCS4hu47QFtHCMn6D1WsHpYWx9etgkiPtlmEqzX4o9STiKX0DEg==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook-windows-x64@1.5.6: - resolution: {integrity: sha512-Em3BdysBxKmJvpV9f5pBB80ME5csA6TEc5HQeL6lEj0FbJI6XRROELjBN52826JND4OxClmVwpOoKPIzbI9hVQ==} + /lefthook-windows-x64@1.5.7: + resolution: {integrity: sha512-vKrnEFUOja+jfPEUWasBSUu6Bu0rMzF1aPD2UbvleGvipTb5fBMfuZUqp/D95SCOg/WFB7BiSCgIhNumxtudcg==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook@1.5.6: - resolution: {integrity: sha512-3gSYpZNpG/Wd1EAKWocGDe7DKcKX02JaoZdA2fTqPJ0LBEWcCQkTvR5D2OsV2S5lJ1QAj3EdX1V+lt4o9wNNeg==} + /lefthook@1.5.7: + resolution: {integrity: sha512-0R0d8xWmhFjWmRRfjp5Ep5HUbGFIGLKIjUNER4dnUkOBrSaBmKHPVa3jEL59cLikj289oKb5ceq7UPagmt2dhA==} hasBin: true requiresBuild: true optionalDependencies: - lefthook-darwin-arm64: 1.5.6 - lefthook-darwin-x64: 1.5.6 - lefthook-freebsd-arm64: 1.5.6 - lefthook-freebsd-x64: 1.5.6 - lefthook-linux-arm64: 1.5.6 - lefthook-linux-x64: 1.5.6 - lefthook-windows-arm64: 1.5.6 - lefthook-windows-x64: 1.5.6 + lefthook-darwin-arm64: 1.5.7 + lefthook-darwin-x64: 1.5.7 + lefthook-freebsd-arm64: 1.5.7 + lefthook-freebsd-x64: 1.5.7 + lefthook-linux-arm64: 1.5.7 + lefthook-linux-x64: 1.5.7 + lefthook-windows-arm64: 1.5.7 + lefthook-windows-x64: 1.5.7 dev: true /lru-cache@5.1.1: From 43b859dd539b258e4d675428b5bd5c725812d4ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:52:40 +0100 Subject: [PATCH 06/23] chore(deps-dev): bump @biomejs/biome from 1.5.1 to 1.5.2 (#46) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 60 +++++++++++++++++++++++++------------------------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/package.json b/package.json index f0606a6..29ee6ac 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "yaml": "^2.3.4" }, "devDependencies": { - "@biomejs/biome": "^1.5.1", + "@biomejs/biome": "^1.5.2", "@octokit/types": "^12.4.0", "@types/node": "^16.18.70", "@types/semver": "^7.5.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9cb9787..1dc2c20 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -28,8 +28,8 @@ dependencies: devDependencies: '@biomejs/biome': - specifier: ^1.5.1 - version: 1.5.1 + specifier: ^1.5.2 + version: 1.5.2 '@octokit/types': specifier: ^12.4.0 version: 12.4.0 @@ -306,24 +306,24 @@ packages: to-fast-properties: 2.0.0 dev: true - /@biomejs/biome@1.5.1: - resolution: {integrity: sha512-rdMA/N1Zc1nxUtbXMVr+50Sg/Pezz+9qGQa2uyRWFtrCoyr3dv0pVz+0ifGGue18ip50ZH8x2r5CV7zo8Q/0mA==} + /@biomejs/biome@1.5.2: + resolution: {integrity: sha512-LhycxGQBQLmfv6M3e4tMfn/XKcUWyduDYOlCEBrHXJ2mMth2qzYt1JWypkWp+XmU/7Hl2dKvrP4mZ5W44+nWZw==} engines: {node: '>=14.*'} hasBin: true requiresBuild: true optionalDependencies: - '@biomejs/cli-darwin-arm64': 1.5.1 - '@biomejs/cli-darwin-x64': 1.5.1 - '@biomejs/cli-linux-arm64': 1.5.1 - '@biomejs/cli-linux-arm64-musl': 1.5.1 - '@biomejs/cli-linux-x64': 1.5.1 - '@biomejs/cli-linux-x64-musl': 1.5.1 - '@biomejs/cli-win32-arm64': 1.5.1 - '@biomejs/cli-win32-x64': 1.5.1 - dev: true - - /@biomejs/cli-darwin-arm64@1.5.1: - resolution: {integrity: sha512-E9pLakmSVHP6UH2uqAghqEkr/IHAIDfDyCedqJVnyFc+uufNTHwB8id4XTiWy/eKIdgxHZsTSE+R+W0IqrTNVQ==} + '@biomejs/cli-darwin-arm64': 1.5.2 + '@biomejs/cli-darwin-x64': 1.5.2 + '@biomejs/cli-linux-arm64': 1.5.2 + '@biomejs/cli-linux-arm64-musl': 1.5.2 + '@biomejs/cli-linux-x64': 1.5.2 + '@biomejs/cli-linux-x64-musl': 1.5.2 + '@biomejs/cli-win32-arm64': 1.5.2 + '@biomejs/cli-win32-x64': 1.5.2 + dev: true + + /@biomejs/cli-darwin-arm64@1.5.2: + resolution: {integrity: sha512-3JVl08aHKsPyf0XL9SEj1lssIMmzOMAn2t1zwZKBiy/mcZdb0vuyMSTM5haMQ/90wEmrkYN7zux777PHEGrGiw==} engines: {node: '>=14.*'} cpu: [arm64] os: [darwin] @@ -331,8 +331,8 @@ packages: dev: true optional: true - /@biomejs/cli-darwin-x64@1.5.1: - resolution: {integrity: sha512-8O1F+FcoCi02JlocyilB6R3y3kT9sRkBCRwYddaBIScQe2hCme/mA2rVzrhCCHhskrclJ51GEKjkEORj4/8c2A==} + /@biomejs/cli-darwin-x64@1.5.2: + resolution: {integrity: sha512-QAPW9rZb/AgucUx+ogMg+9eJNipQDqvabktC5Tx4Aqb/mFzS6eDqNP7O0SbGz3DtC5Y2LATEj6o6zKIQ4ZT+3w==} engines: {node: '>=14.*'} cpu: [x64] os: [darwin] @@ -340,8 +340,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-arm64-musl@1.5.1: - resolution: {integrity: sha512-Lw9G3LUdhRMp8L8RMeVevnfQCa7luT6ubQ8GRjLju32glxWKefpDrzgfHixGyvTQPlhnYjQ+V8/QQ/I7WPzOoA==} + /@biomejs/cli-linux-arm64-musl@1.5.2: + resolution: {integrity: sha512-Z29SjaOyO4QfajplNXSjLx17S79oPN42D094zjE24z7C7p3NxvLhKLygtSP9emgaXkcoESe2chOzF4IrGy/rlg==} engines: {node: '>=14.*'} cpu: [arm64] os: [linux] @@ -349,8 +349,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-arm64@1.5.1: - resolution: {integrity: sha512-25gwY4FMzmi1Rl6N835raLq7nzTk+PyEQd88k9Em6dqtI4qpljqmZlMmVjOiwXKe3Ee80J/Vlh7BM36lsHUTEg==} + /@biomejs/cli-linux-arm64@1.5.2: + resolution: {integrity: sha512-fVLrUgIlo05rO4cNu+Py5EwwmXnXhWH+8KrNlWkr2weMYjq85SihUsuWWKpmqU+bUVR+m5gwfcIXZVWYVCJMHw==} engines: {node: '>=14.*'} cpu: [arm64] os: [linux] @@ -358,8 +358,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-x64-musl@1.5.1: - resolution: {integrity: sha512-5gapxc/VlwTgGRbTc9h8PMTpf8eNahIBauFUGSXncHgayi3VpezKSicgaQ1bb8FahVXf/5eNEVxVARq/or71Ag==} + /@biomejs/cli-linux-x64-musl@1.5.2: + resolution: {integrity: sha512-ZolquPEjWYUmGeERS8svHOOT7OXEeoriPnV8qptgWJmYF9EO9HUGRn1UtCvdVziDYK+u1A7PxjOdkY1B00ty5A==} engines: {node: '>=14.*'} cpu: [x64] os: [linux] @@ -367,8 +367,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-x64@1.5.1: - resolution: {integrity: sha512-YDM0gZP4UbAuaBI3DVbUuj5X+Omm6uxzD1Qpc6hcduH1kzXzs9L0ee7cn/kJtNndoXR8MlmUS0O0/wWvZf2YaA==} + /@biomejs/cli-linux-x64@1.5.2: + resolution: {integrity: sha512-ixqJtUHtF0ho1+1DTZQLAEwHGSqvmvHhAAFXZQoaSdABn+IcITYExlFVA3bGvASy/xtPjRhTx42hVwPtLwMHwg==} engines: {node: '>=14.*'} cpu: [x64] os: [linux] @@ -376,8 +376,8 @@ packages: dev: true optional: true - /@biomejs/cli-win32-arm64@1.5.1: - resolution: {integrity: sha512-TVpLBOLUMLQmH2VRFBKFr3rgEkr7XvG4QZxHOxWB9Ivc/sQPvg4aHMd8qpgPKXABGUnultyc9t0+WvfIDxuALg==} + /@biomejs/cli-win32-arm64@1.5.2: + resolution: {integrity: sha512-DN4cXSAoFTdjOoh7f+JITj1uQgQSXt+1pVea9bFrpbgip+ZwkONqQq+jUcmFMMehbp9LuiVtNXFz/ReHn6FY7A==} engines: {node: '>=14.*'} cpu: [arm64] os: [win32] @@ -385,8 +385,8 @@ packages: dev: true optional: true - /@biomejs/cli-win32-x64@1.5.1: - resolution: {integrity: sha512-qx8EKwScZmVYZjMPZ6GF3ZUmgg/N6zqh+d8vHA2E43opNCyqIPTl89sOqkc7zd1CyyABDWxsbqI9Ih6xTT6hnQ==} + /@biomejs/cli-win32-x64@1.5.2: + resolution: {integrity: sha512-YvWWXZmk936FdrXqc2jcP6rfsXsNBIs9MKBQQoVXIihwNNRiAaBD9Iwa/ouU1b7Zxq2zETgeuRewVJickFuVOw==} engines: {node: '>=14.*'} cpu: [x64] os: [win32] From fbcd29aa76fcda49c50f6b70bbcb4e85b0772b09 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:52:51 +0100 Subject: [PATCH 07/23] chore(deps-dev): bump @types/node from 16.18.70 to 16.18.74 (#47) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 29ee6ac..9d01f00 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "devDependencies": { "@biomejs/biome": "^1.5.2", "@octokit/types": "^12.4.0", - "@types/node": "^16.18.70", + "@types/node": "^16.18.74", "@types/semver": "^7.5.6", "@vercel/ncc": "^0.38.1", "lefthook": "^1.5.7", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1dc2c20..b6c6bae 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,8 +34,8 @@ devDependencies: specifier: ^12.4.0 version: 12.4.0 '@types/node': - specifier: ^16.18.70 - version: 16.18.70 + specifier: ^16.18.74 + version: 16.18.74 '@types/semver': specifier: ^7.5.6 version: 7.5.6 @@ -1061,8 +1061,8 @@ packages: resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} dev: true - /@types/node@16.18.70: - resolution: {integrity: sha512-8eIk20G5VVVQNZNouHjLA2b8utE2NvGybLjMaF4lyhA9uhGwnmXF8o+icdXKGSQSNANJewXva/sFUoZLwAaYAg==} + /@types/node@16.18.74: + resolution: {integrity: sha512-eEn8RkzZFcT0gb8qyi0CcfSOQnLE+NbGLIIaxGGmjn/N35v/C3M8ohxcpSlNlCv+H8vPpMGmrGDdCkzr8xu2tQ==} dev: true /@types/resolve@1.20.2: From ae70cbc9e883f3250c884d92cad5c42da1af5e76 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 09:06:29 +0100 Subject: [PATCH 08/23] chore(deps-dev): bump @biomejs/biome from 1.5.2 to 1.5.3 (#49) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 60 +++++++++++++++++++++++++------------------------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/package.json b/package.json index 9d01f00..c16baab 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "yaml": "^2.3.4" }, "devDependencies": { - "@biomejs/biome": "^1.5.2", + "@biomejs/biome": "^1.5.3", "@octokit/types": "^12.4.0", "@types/node": "^16.18.74", "@types/semver": "^7.5.6", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b6c6bae..c766b27 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -28,8 +28,8 @@ dependencies: devDependencies: '@biomejs/biome': - specifier: ^1.5.2 - version: 1.5.2 + specifier: ^1.5.3 + version: 1.5.3 '@octokit/types': specifier: ^12.4.0 version: 12.4.0 @@ -306,24 +306,24 @@ packages: to-fast-properties: 2.0.0 dev: true - /@biomejs/biome@1.5.2: - resolution: {integrity: sha512-LhycxGQBQLmfv6M3e4tMfn/XKcUWyduDYOlCEBrHXJ2mMth2qzYt1JWypkWp+XmU/7Hl2dKvrP4mZ5W44+nWZw==} + /@biomejs/biome@1.5.3: + resolution: {integrity: sha512-yvZCa/g3akwTaAQ7PCwPWDCkZs3Qa5ONg/fgOUT9e6wAWsPftCjLQFPXBeGxPK30yZSSpgEmRCfpGTmVbUjGgg==} engines: {node: '>=14.*'} hasBin: true requiresBuild: true optionalDependencies: - '@biomejs/cli-darwin-arm64': 1.5.2 - '@biomejs/cli-darwin-x64': 1.5.2 - '@biomejs/cli-linux-arm64': 1.5.2 - '@biomejs/cli-linux-arm64-musl': 1.5.2 - '@biomejs/cli-linux-x64': 1.5.2 - '@biomejs/cli-linux-x64-musl': 1.5.2 - '@biomejs/cli-win32-arm64': 1.5.2 - '@biomejs/cli-win32-x64': 1.5.2 - dev: true - - /@biomejs/cli-darwin-arm64@1.5.2: - resolution: {integrity: sha512-3JVl08aHKsPyf0XL9SEj1lssIMmzOMAn2t1zwZKBiy/mcZdb0vuyMSTM5haMQ/90wEmrkYN7zux777PHEGrGiw==} + '@biomejs/cli-darwin-arm64': 1.5.3 + '@biomejs/cli-darwin-x64': 1.5.3 + '@biomejs/cli-linux-arm64': 1.5.3 + '@biomejs/cli-linux-arm64-musl': 1.5.3 + '@biomejs/cli-linux-x64': 1.5.3 + '@biomejs/cli-linux-x64-musl': 1.5.3 + '@biomejs/cli-win32-arm64': 1.5.3 + '@biomejs/cli-win32-x64': 1.5.3 + dev: true + + /@biomejs/cli-darwin-arm64@1.5.3: + resolution: {integrity: sha512-ImU7mh1HghEDyqNmxEZBoMPr8SxekkZuYcs+gynKlNW+TALQs7swkERiBLkG9NR0K1B3/2uVzlvYowXrmlW8hw==} engines: {node: '>=14.*'} cpu: [arm64] os: [darwin] @@ -331,8 +331,8 @@ packages: dev: true optional: true - /@biomejs/cli-darwin-x64@1.5.2: - resolution: {integrity: sha512-QAPW9rZb/AgucUx+ogMg+9eJNipQDqvabktC5Tx4Aqb/mFzS6eDqNP7O0SbGz3DtC5Y2LATEj6o6zKIQ4ZT+3w==} + /@biomejs/cli-darwin-x64@1.5.3: + resolution: {integrity: sha512-vCdASqYnlpq/swErH7FD6nrFz0czFtK4k/iLgj0/+VmZVjineFPgevOb+Sr9vz0tk0GfdQO60bSpI74zU8M9Dw==} engines: {node: '>=14.*'} cpu: [x64] os: [darwin] @@ -340,8 +340,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-arm64-musl@1.5.2: - resolution: {integrity: sha512-Z29SjaOyO4QfajplNXSjLx17S79oPN42D094zjE24z7C7p3NxvLhKLygtSP9emgaXkcoESe2chOzF4IrGy/rlg==} + /@biomejs/cli-linux-arm64-musl@1.5.3: + resolution: {integrity: sha512-DYuMizUYUBYfS0IHGjDrOP1RGipqWfMGEvNEJ398zdtmCKLXaUvTimiox5dvx4X15mBK5M2m8wgWUgOP1giUpQ==} engines: {node: '>=14.*'} cpu: [arm64] os: [linux] @@ -349,8 +349,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-arm64@1.5.2: - resolution: {integrity: sha512-fVLrUgIlo05rO4cNu+Py5EwwmXnXhWH+8KrNlWkr2weMYjq85SihUsuWWKpmqU+bUVR+m5gwfcIXZVWYVCJMHw==} + /@biomejs/cli-linux-arm64@1.5.3: + resolution: {integrity: sha512-cupBQv0sNF1OKqBfx7EDWMSsKwRrBUZfjXawT4s6hKV6ALq7p0QzWlxr/sDmbKMLOaLQtw2Qgu/77N9rm+f9Rg==} engines: {node: '>=14.*'} cpu: [arm64] os: [linux] @@ -358,8 +358,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-x64-musl@1.5.2: - resolution: {integrity: sha512-ZolquPEjWYUmGeERS8svHOOT7OXEeoriPnV8qptgWJmYF9EO9HUGRn1UtCvdVziDYK+u1A7PxjOdkY1B00ty5A==} + /@biomejs/cli-linux-x64-musl@1.5.3: + resolution: {integrity: sha512-UUHiAnlDqr2Y/LpvshBFhUYMWkl2/Jn+bi3U6jKuav0qWbbBKU/ByHgR4+NBxpKBYoCtWxhnmatfH1bpPIuZMw==} engines: {node: '>=14.*'} cpu: [x64] os: [linux] @@ -367,8 +367,8 @@ packages: dev: true optional: true - /@biomejs/cli-linux-x64@1.5.2: - resolution: {integrity: sha512-ixqJtUHtF0ho1+1DTZQLAEwHGSqvmvHhAAFXZQoaSdABn+IcITYExlFVA3bGvASy/xtPjRhTx42hVwPtLwMHwg==} + /@biomejs/cli-linux-x64@1.5.3: + resolution: {integrity: sha512-YQrSArQvcv4FYsk7Q91Yv4uuu5F8hJyORVcv3zsjCLGkjIjx2RhjYLpTL733SNL7v33GmOlZY0eFR1ko38tuUw==} engines: {node: '>=14.*'} cpu: [x64] os: [linux] @@ -376,8 +376,8 @@ packages: dev: true optional: true - /@biomejs/cli-win32-arm64@1.5.2: - resolution: {integrity: sha512-DN4cXSAoFTdjOoh7f+JITj1uQgQSXt+1pVea9bFrpbgip+ZwkONqQq+jUcmFMMehbp9LuiVtNXFz/ReHn6FY7A==} + /@biomejs/cli-win32-arm64@1.5.3: + resolution: {integrity: sha512-HxatYH7vf/kX9nrD+pDYuV2GI9GV8EFo6cfKkahAecTuZLPxryHx1WEfJthp5eNsE0+09STGkKIKjirP0ufaZA==} engines: {node: '>=14.*'} cpu: [arm64] os: [win32] @@ -385,8 +385,8 @@ packages: dev: true optional: true - /@biomejs/cli-win32-x64@1.5.2: - resolution: {integrity: sha512-YvWWXZmk936FdrXqc2jcP6rfsXsNBIs9MKBQQoVXIihwNNRiAaBD9Iwa/ouU1b7Zxq2zETgeuRewVJickFuVOw==} + /@biomejs/cli-win32-x64@1.5.3: + resolution: {integrity: sha512-fMvbSouZEASU7mZH8SIJSANDm5OqsjgtVXlbUqxwed6BP7uuHRSs396Aqwh2+VoW8fwTpp6ybIUoC9FrzB0kyA==} engines: {node: '>=14.*'} cpu: [x64] os: [win32] From f22fbc9c0c4386421fcfc03bce66146dae6c31bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 09:06:47 +0100 Subject: [PATCH 09/23] chore(deps-dev): bump @types/node from 16.18.74 to 16.18.76 (#50) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c16baab..93d8d12 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "devDependencies": { "@biomejs/biome": "^1.5.3", "@octokit/types": "^12.4.0", - "@types/node": "^16.18.74", + "@types/node": "^16.18.76", "@types/semver": "^7.5.6", "@vercel/ncc": "^0.38.1", "lefthook": "^1.5.7", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c766b27..6e0b568 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,8 +34,8 @@ devDependencies: specifier: ^12.4.0 version: 12.4.0 '@types/node': - specifier: ^16.18.74 - version: 16.18.74 + specifier: ^16.18.76 + version: 16.18.76 '@types/semver': specifier: ^7.5.6 version: 7.5.6 @@ -1061,8 +1061,8 @@ packages: resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} dev: true - /@types/node@16.18.74: - resolution: {integrity: sha512-eEn8RkzZFcT0gb8qyi0CcfSOQnLE+NbGLIIaxGGmjn/N35v/C3M8ohxcpSlNlCv+H8vPpMGmrGDdCkzr8xu2tQ==} + /@types/node@16.18.76: + resolution: {integrity: sha512-/GsO2uv1Z6R42lBr59dtem56gVF/yHKQaScggwU+gLU6DXE25sDmOar4c4IfWb3h+X/7OYZznPOFk7oGF3jQSA==} dev: true /@types/resolve@1.20.2: From 9a18a00e4f8c7121930a2d33f6ad58a1e36c5e1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 13:33:12 +0100 Subject: [PATCH 10/23] chore(deps-dev): bump lefthook from 1.5.7 to 1.6.1 (#51) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 56 +++++++++++++++++++++++++------------------------- 2 files changed, 29 insertions(+), 29 deletions(-) diff --git a/package.json b/package.json index 93d8d12..8404b66 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "@types/node": "^16.18.76", "@types/semver": "^7.5.6", "@vercel/ncc": "^0.38.1", - "lefthook": "^1.5.7", + "lefthook": "^1.6.1", "typescript": "^5.3.3", "unbuild": "^2.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6e0b568..3c7371c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,8 +43,8 @@ devDependencies: specifier: ^0.38.1 version: 0.38.1 lefthook: - specifier: ^1.5.7 - version: 1.5.7 + specifier: ^1.6.1 + version: 1.6.1 typescript: specifier: ^5.3.3 version: 5.3.3 @@ -1487,83 +1487,83 @@ packages: graceful-fs: 4.2.11 dev: true - /lefthook-darwin-arm64@1.5.7: - resolution: {integrity: sha512-QfyiKim+SkN5JL0E4pAmEk+e+ubE5ToOSz58AP4TcgQ5RQ00xwmYJdQKqxPL9OmbyrKYWmAXjuvMf9YZQ6rzVA==} + /lefthook-darwin-arm64@1.6.1: + resolution: {integrity: sha512-q6+sYr2Dpt6YnBGXRjMFcXZUnVB97nH+s7EP/tX8m9ewvQxLPqIiUPyAumfyJ2Siomkc5WgAinG+kT63VjUN3A==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-darwin-x64@1.5.7: - resolution: {integrity: sha512-ThDqidLarJc+GIWTrwEp8YDtM1OhL9oHpF6HremEUmaHuinM3ba193mQsCbsRU3LgUjZ4s1+hQrulq49pwYdRg==} + /lefthook-darwin-x64@1.6.1: + resolution: {integrity: sha512-utm7FwtbW8SxGMALIw5/iG4loYS2FI0crDKp/YIamrZgQr6M4pS2C3rxGj5OwiHFIm3arVU+3VZywdvRLJAw0w==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-freebsd-arm64@1.5.7: - resolution: {integrity: sha512-+rmVU1ad61CnQIfK+aricfUyJ7GCEuhOAoPVa7en0uY1yP/tJmh4sqlZ/PGuElsqLBZCi7EscI0mV/EvegPwaQ==} + /lefthook-freebsd-arm64@1.6.1: + resolution: {integrity: sha512-F2BoDnGznkJyn6lyhmXpu62yq7SMCeHAl3Bl8c+P6mXfmatjjxEpVmrzRuzKMPd/MRGpy2B/glkuyO4wZZazow==} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-freebsd-x64@1.5.7: - resolution: {integrity: sha512-GSOsrsF5QOHS/1gwr83ZEXIpfe4jl75YVmYKHmYQabqW9JB+LCXlktt6PDnKZE7ovNRfFtnueCYfvMCsWLRaJA==} + /lefthook-freebsd-x64@1.6.1: + resolution: {integrity: sha512-/NBjMUtnwvdc/p821sfPnZCbWZ6FQkAvnvjoaQu6tkajKZbZYSKsl7UtAicO0nT+79BQFt7TbaZjpua2T9tM5w==} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-linux-arm64@1.5.7: - resolution: {integrity: sha512-MJ2dkvyqMmJSi5pXwDibqkVTAzqSGV/Ae9ThLNA6/yA3/QD9QovPoQ+nOvbCIoyDcUmxTPJyz5p7X1qXtHD9vw==} + /lefthook-linux-arm64@1.6.1: + resolution: {integrity: sha512-ke+2ni/bmxgYJSRsH+uIYYfTLj2It7WP+mcF4rfJHRbzn5yDYIjFgylUMC2CgW5urS4DSbxcRIbAqLY3OXAHnw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-linux-x64@1.5.7: - resolution: {integrity: sha512-Pus26oI9t8DYz+2bXHBrr/iuqL23epHXD9GufsGysNGEUY59iYG5JqQhXidueVhPm/DHcdv3IFzDrsHMDFEGlw==} + /lefthook-linux-x64@1.6.1: + resolution: {integrity: sha512-/HLkl9jt3XRjT0RPaLpAgUQmvp4zV/KKZ/8x6xslPl89krv3ZkHKKrqeaHdhiengq3hzx3N+KbOfFcxBRzdT6A==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-windows-arm64@1.5.7: - resolution: {integrity: sha512-1aIuyNnnhSHUJiFqFonivGE02a/pjXCkvXIYCS4hu47QFtHCMn6D1WsHpYWx9etgkiPtlmEqzX4o9STiKX0DEg==} + /lefthook-windows-arm64@1.6.1: + resolution: {integrity: sha512-RyQ8S4/45BpJpRPy7KsOuJeXQ5FOa7MASoPtOYvrXt4A8kayCv1jlGs7MTv3XJbUosCJhfNpw3ReeHVGfw1KIw==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook-windows-x64@1.5.7: - resolution: {integrity: sha512-vKrnEFUOja+jfPEUWasBSUu6Bu0rMzF1aPD2UbvleGvipTb5fBMfuZUqp/D95SCOg/WFB7BiSCgIhNumxtudcg==} + /lefthook-windows-x64@1.6.1: + resolution: {integrity: sha512-poYLk2tfg1Ncr4aZeFuhHjv1qH6f9hX3tV1FOK2MfWkXkRTYPl6MF5h/ONMIv71BsLjGbAA7LNXM5Mj4/B//lQ==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook@1.5.7: - resolution: {integrity: sha512-0R0d8xWmhFjWmRRfjp5Ep5HUbGFIGLKIjUNER4dnUkOBrSaBmKHPVa3jEL59cLikj289oKb5ceq7UPagmt2dhA==} + /lefthook@1.6.1: + resolution: {integrity: sha512-1T+tk0V6ubZgiZJGi39QlLMAcgEw+lhoDeSpT3L8Y/f8nUpJW9ntcMOmt+uvMfQ3TVjNcR1r/Lhtm7gTqgdcPg==} hasBin: true requiresBuild: true optionalDependencies: - lefthook-darwin-arm64: 1.5.7 - lefthook-darwin-x64: 1.5.7 - lefthook-freebsd-arm64: 1.5.7 - lefthook-freebsd-x64: 1.5.7 - lefthook-linux-arm64: 1.5.7 - lefthook-linux-x64: 1.5.7 - lefthook-windows-arm64: 1.5.7 - lefthook-windows-x64: 1.5.7 + lefthook-darwin-arm64: 1.6.1 + lefthook-darwin-x64: 1.6.1 + lefthook-freebsd-arm64: 1.6.1 + lefthook-freebsd-x64: 1.6.1 + lefthook-linux-arm64: 1.6.1 + lefthook-linux-x64: 1.6.1 + lefthook-windows-arm64: 1.6.1 + lefthook-windows-x64: 1.6.1 dev: true /lru-cache@5.1.1: From 0a399ec3d6dd53c4424db120ad2129deb1dd6455 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 13:33:23 +0100 Subject: [PATCH 11/23] chore(deps): bump pnpm/action-setup from 2 to 3 (#53) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/integrate.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 1589bb3..b6c8f4c 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -19,7 +19,7 @@ jobs: node-version: 16.x - name: Setup pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: run_install: true @@ -41,7 +41,7 @@ jobs: node-version: 16.x - name: Setup pnpm - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v3 with: run_install: true From 6f3bdbf8aee0d0f021398ada1a71e2c83fbba78a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 13:33:34 +0100 Subject: [PATCH 12/23] chore(deps): bump semver and @types/semver (#54) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 4 ++-- pnpm-lock.yaml | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 8404b66..7bd066a 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "@octokit/auth-action": "^4.0.1", "@octokit/request-error": "^5.0.1", "@octokit/rest": "^20.0.2", - "semver": "^7.5.4", + "semver": "^7.6.0", "ts-dedent": "^2.2.0", "yaml": "^2.3.4" }, @@ -33,7 +33,7 @@ "@biomejs/biome": "^1.5.3", "@octokit/types": "^12.4.0", "@types/node": "^16.18.76", - "@types/semver": "^7.5.6", + "@types/semver": "^7.5.7", "@vercel/ncc": "^0.38.1", "lefthook": "^1.6.1", "typescript": "^5.3.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3c7371c..f90d87f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,8 +17,8 @@ dependencies: specifier: ^20.0.2 version: 20.0.2 semver: - specifier: ^7.5.4 - version: 7.5.4 + specifier: ^7.6.0 + version: 7.6.0 ts-dedent: specifier: ^2.2.0 version: 2.2.0 @@ -37,8 +37,8 @@ devDependencies: specifier: ^16.18.76 version: 16.18.76 '@types/semver': - specifier: ^7.5.6 - version: 7.5.6 + specifier: ^7.5.7 + version: 7.5.7 '@vercel/ncc': specifier: ^0.38.1 version: 0.38.1 @@ -1069,8 +1069,8 @@ packages: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true - /@types/semver@7.5.6: - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} + /@types/semver@7.5.7: + resolution: {integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==} dev: true /@vercel/ncc@0.38.1: @@ -1753,8 +1753,8 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + /semver@7.6.0: + resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==} engines: {node: '>=10'} hasBin: true dependencies: From 97bbb71275d92e428b39c874d61c1e7dca16e5e0 Mon Sep 17 00:00:00 2001 From: Emanuele Stoppa Date: Wed, 14 Feb 2024 09:59:56 +0000 Subject: [PATCH 13/23] chore: remove funding file --- .github/FUNDING.yml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 9da73fb..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -github: [ nhedger ] From 18923819abebf9d4a44a8b4677a2ece2df1b8321 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 11:18:26 +0100 Subject: [PATCH 14/23] chore(deps-dev): bump @types/node from 16.18.76 to 16.18.80 (#55) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 7bd066a..27691e3 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "devDependencies": { "@biomejs/biome": "^1.5.3", "@octokit/types": "^12.4.0", - "@types/node": "^16.18.76", + "@types/node": "^16.18.80", "@types/semver": "^7.5.7", "@vercel/ncc": "^0.38.1", "lefthook": "^1.6.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f90d87f..865ee47 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,8 +34,8 @@ devDependencies: specifier: ^12.4.0 version: 12.4.0 '@types/node': - specifier: ^16.18.76 - version: 16.18.76 + specifier: ^16.18.80 + version: 16.18.80 '@types/semver': specifier: ^7.5.7 version: 7.5.7 @@ -1061,8 +1061,8 @@ packages: resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} dev: true - /@types/node@16.18.76: - resolution: {integrity: sha512-/GsO2uv1Z6R42lBr59dtem56gVF/yHKQaScggwU+gLU6DXE25sDmOar4c4IfWb3h+X/7OYZznPOFk7oGF3jQSA==} + /@types/node@16.18.80: + resolution: {integrity: sha512-vFxJ1Iyl7A0+xB0uW1r1v504yItKZLdqg/VZELUZ4H02U0bXAgBisSQ8Erf0DMruNFz9ggoiEv6T8Ll9bTg8Jw==} dev: true /@types/resolve@1.20.2: From c193d5dcb640398d4db34213b946b7b0a1141812 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 24 Feb 2024 21:39:57 +0100 Subject: [PATCH 15/23] chore(deps-dev): bump @octokit/types from 12.4.0 to 12.5.0 (#58) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 27691e3..7d0e2e6 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ }, "devDependencies": { "@biomejs/biome": "^1.5.3", - "@octokit/types": "^12.4.0", + "@octokit/types": "^12.5.0", "@types/node": "^16.18.80", "@types/semver": "^7.5.7", "@vercel/ncc": "^0.38.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 865ee47..8a6cdda 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,8 +31,8 @@ devDependencies: specifier: ^1.5.3 version: 1.5.3 '@octokit/types': - specifier: ^12.4.0 - version: 12.4.0 + specifier: ^12.5.0 + version: 12.5.0 '@types/node': specifier: ^16.18.80 version: 16.18.80 @@ -850,7 +850,7 @@ packages: engines: {node: '>= 18'} dependencies: '@octokit/auth-token': 4.0.0 - '@octokit/types': 12.4.0 + '@octokit/types': 12.5.0 dev: false /@octokit/auth-token@4.0.0: @@ -903,7 +903,7 @@ packages: '@octokit/core': '>=5' dependencies: '@octokit/core': 5.0.0 - '@octokit/types': 12.4.0 + '@octokit/types': 12.5.0 dev: false /@octokit/plugin-request-log@4.0.0(@octokit/core@5.0.0): @@ -922,14 +922,14 @@ packages: '@octokit/core': '>=5' dependencies: '@octokit/core': 5.0.0 - '@octokit/types': 12.4.0 + '@octokit/types': 12.5.0 dev: false /@octokit/request-error@5.0.1: resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==} engines: {node: '>= 18'} dependencies: - '@octokit/types': 12.4.0 + '@octokit/types': 12.5.0 deprecation: 2.3.1 once: 1.4.0 dev: false @@ -961,8 +961,8 @@ packages: '@octokit/openapi-types': 18.0.0 dev: false - /@octokit/types@12.4.0: - resolution: {integrity: sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==} + /@octokit/types@12.5.0: + resolution: {integrity: sha512-YJEKcb0KkJlIUNU/zjnZwHEP8AoVh/OoIcP/1IyR4UHxExz7fzpe/a8IG4wBtQi7QDEqiomVLX88S6FpxxAJtg==} dependencies: '@octokit/openapi-types': 19.1.0 From a67de7f5f276465d2c7686ec097232f3632625a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 09:07:00 +0100 Subject: [PATCH 16/23] chore(deps-dev): bump @types/node from 16.18.80 to 16.18.83 (#59) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 7d0e2e6..e201965 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "devDependencies": { "@biomejs/biome": "^1.5.3", "@octokit/types": "^12.5.0", - "@types/node": "^16.18.80", + "@types/node": "^16.18.83", "@types/semver": "^7.5.7", "@vercel/ncc": "^0.38.1", "lefthook": "^1.6.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8a6cdda..fa8bbe9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,8 +34,8 @@ devDependencies: specifier: ^12.5.0 version: 12.5.0 '@types/node': - specifier: ^16.18.80 - version: 16.18.80 + specifier: ^16.18.83 + version: 16.18.83 '@types/semver': specifier: ^7.5.7 version: 7.5.7 @@ -1061,8 +1061,8 @@ packages: resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} dev: true - /@types/node@16.18.80: - resolution: {integrity: sha512-vFxJ1Iyl7A0+xB0uW1r1v504yItKZLdqg/VZELUZ4H02U0bXAgBisSQ8Erf0DMruNFz9ggoiEv6T8Ll9bTg8Jw==} + /@types/node@16.18.83: + resolution: {integrity: sha512-TmBqzDY/GeCEmLob/31SunOQnqYE3ZiiuEh1U9o3HqE1E2cqKZQA5RQg4krEguCY3StnkXyDmCny75qyFLx/rA==} dev: true /@types/resolve@1.20.2: From 3b8097e04b2814bd1a6efb6b893aa526e74edd9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 09:07:29 +0100 Subject: [PATCH 17/23] chore(deps): bump yaml from 2.3.4 to 2.4.0 (#61) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index e201965..6360ac3 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "@octokit/rest": "^20.0.2", "semver": "^7.6.0", "ts-dedent": "^2.2.0", - "yaml": "^2.3.4" + "yaml": "^2.4.0" }, "devDependencies": { "@biomejs/biome": "^1.5.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fa8bbe9..9a674d3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -23,8 +23,8 @@ dependencies: specifier: ^2.2.0 version: 2.2.0 yaml: - specifier: ^2.3.4 - version: 2.3.4 + specifier: ^2.4.0 + version: 2.4.0 devDependencies: '@biomejs/biome': @@ -1906,9 +1906,10 @@ packages: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: false - /yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + /yaml@2.4.0: + resolution: {integrity: sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ==} engines: {node: '>= 14'} + hasBin: true dev: false settings: From bbad311a3e777d76f15e8deaeb847914f17e5aed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:12:56 +0100 Subject: [PATCH 18/23] chore(deps-dev): bump @types/semver from 7.5.7 to 7.5.8 (#63) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 6360ac3..6fa78fa 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "@biomejs/biome": "^1.5.3", "@octokit/types": "^12.5.0", "@types/node": "^16.18.83", - "@types/semver": "^7.5.7", + "@types/semver": "^7.5.8", "@vercel/ncc": "^0.38.1", "lefthook": "^1.6.1", "typescript": "^5.3.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9a674d3..fba9030 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -37,8 +37,8 @@ devDependencies: specifier: ^16.18.83 version: 16.18.83 '@types/semver': - specifier: ^7.5.7 - version: 7.5.7 + specifier: ^7.5.8 + version: 7.5.8 '@vercel/ncc': specifier: ^0.38.1 version: 0.38.1 @@ -1069,8 +1069,8 @@ packages: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true - /@types/semver@7.5.7: - resolution: {integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==} + /@types/semver@7.5.8: + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} dev: true /@vercel/ncc@0.38.1: From 2e374b7a88c9dcf6c1335ea544444b22d5529460 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:13:10 +0100 Subject: [PATCH 19/23] chore(deps): bump @octokit/request-error from 5.0.1 to 6.0.1 (#62) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 11 +++++++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6fa78fa..ca2a3a3 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "@actions/core": "^1.10.1", "@actions/tool-cache": "^2.0.1", "@octokit/auth-action": "^4.0.1", - "@octokit/request-error": "^5.0.1", + "@octokit/request-error": "^6.0.1", "@octokit/rest": "^20.0.2", "semver": "^7.6.0", "ts-dedent": "^2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fba9030..c158a52 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -11,8 +11,8 @@ dependencies: specifier: ^4.0.1 version: 4.0.1 '@octokit/request-error': - specifier: ^5.0.1 - version: 5.0.1 + specifier: ^6.0.1 + version: 6.0.1 '@octokit/rest': specifier: ^20.0.2 version: 20.0.2 @@ -934,6 +934,13 @@ packages: once: 1.4.0 dev: false + /@octokit/request-error@6.0.1: + resolution: {integrity: sha512-EPeILOAEGqwmEG6g7dYlbvqkjJ5nWNcZvQpgeLEn1MieIcJ0xK0CJtvVcIMXqzIM8DOWzvI6zL5FQAwjTvk/Tg==} + engines: {node: '>= 18'} + dependencies: + '@octokit/types': 12.5.0 + dev: false + /@octokit/request@8.1.0: resolution: {integrity: sha512-0gg/NwewU0iXctYBale0VVcCPqOtoW5lsog8cNBJgzV/CyTHa2gicUBOlNnzOk6pJkuwXI34qkq+uRm40PmD4A==} engines: {node: '>= 18'} From 6dfd6ebabfd5abed2179e3f974c4801d5c987a80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 13:13:17 +0100 Subject: [PATCH 20/23] chore(deps-dev): bump @octokit/types from 12.5.0 to 12.6.0 (#60) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package.json | 2 +- pnpm-lock.yaml | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/package.json b/package.json index ca2a3a3..58c97a8 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ }, "devDependencies": { "@biomejs/biome": "^1.5.3", - "@octokit/types": "^12.5.0", + "@octokit/types": "^12.6.0", "@types/node": "^16.18.83", "@types/semver": "^7.5.8", "@vercel/ncc": "^0.38.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c158a52..15b587f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,8 +31,8 @@ devDependencies: specifier: ^1.5.3 version: 1.5.3 '@octokit/types': - specifier: ^12.5.0 - version: 12.5.0 + specifier: ^12.6.0 + version: 12.6.0 '@types/node': specifier: ^16.18.83 version: 16.18.83 @@ -850,7 +850,7 @@ packages: engines: {node: '>= 18'} dependencies: '@octokit/auth-token': 4.0.0 - '@octokit/types': 12.5.0 + '@octokit/types': 12.6.0 dev: false /@octokit/auth-token@4.0.0: @@ -893,8 +893,8 @@ packages: resolution: {integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==} dev: false - /@octokit/openapi-types@19.1.0: - resolution: {integrity: sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==} + /@octokit/openapi-types@20.0.0: + resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==} /@octokit/plugin-paginate-rest@9.0.0(@octokit/core@5.0.0): resolution: {integrity: sha512-oIJzCpttmBTlEhBmRvb+b9rlnGpmFgDtZ0bB6nq39qIod6A5DP+7RkVLMOixIgRCYSHDTeayWqmiJ2SZ6xgfdw==} @@ -903,7 +903,7 @@ packages: '@octokit/core': '>=5' dependencies: '@octokit/core': 5.0.0 - '@octokit/types': 12.5.0 + '@octokit/types': 12.6.0 dev: false /@octokit/plugin-request-log@4.0.0(@octokit/core@5.0.0): @@ -922,14 +922,14 @@ packages: '@octokit/core': '>=5' dependencies: '@octokit/core': 5.0.0 - '@octokit/types': 12.5.0 + '@octokit/types': 12.6.0 dev: false /@octokit/request-error@5.0.1: resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==} engines: {node: '>= 18'} dependencies: - '@octokit/types': 12.5.0 + '@octokit/types': 12.6.0 deprecation: 2.3.1 once: 1.4.0 dev: false @@ -968,10 +968,10 @@ packages: '@octokit/openapi-types': 18.0.0 dev: false - /@octokit/types@12.5.0: - resolution: {integrity: sha512-YJEKcb0KkJlIUNU/zjnZwHEP8AoVh/OoIcP/1IyR4UHxExz7fzpe/a8IG4wBtQi7QDEqiomVLX88S6FpxxAJtg==} + /@octokit/types@12.6.0: + resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==} dependencies: - '@octokit/openapi-types': 19.1.0 + '@octokit/openapi-types': 20.0.0 /@rollup/plugin-alias@5.0.0(rollup@3.29.2): resolution: {integrity: sha512-l9hY5chSCjuFRPsnRm16twWBiSApl2uYFLsepQYwtBuAxNMQ/1dJqADld40P0Jkqm65GRTLy/AC6hnpVebtLsA==} From 2b1f91901572e2b98c576d7ff052aad447c96649 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Mar 2024 06:58:29 +0100 Subject: [PATCH 21/23] chore(deps-dev): bump lefthook from 1.6.1 to 1.6.4 (#64) --- package.json | 2 +- pnpm-lock.yaml | 58 +++++++++++++++++++++++++------------------------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/package.json b/package.json index 58c97a8..3ecafb4 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "@types/node": "^16.18.83", "@types/semver": "^7.5.8", "@vercel/ncc": "^0.38.1", - "lefthook": "^1.6.1", + "lefthook": "^1.6.4", "typescript": "^5.3.3", "unbuild": "^2.0.0" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 15b587f..f57029f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,8 +43,8 @@ devDependencies: specifier: ^0.38.1 version: 0.38.1 lefthook: - specifier: ^1.6.1 - version: 1.6.1 + specifier: ^1.6.4 + version: 1.6.4 typescript: specifier: ^5.3.3 version: 5.3.3 @@ -938,7 +938,7 @@ packages: resolution: {integrity: sha512-EPeILOAEGqwmEG6g7dYlbvqkjJ5nWNcZvQpgeLEn1MieIcJ0xK0CJtvVcIMXqzIM8DOWzvI6zL5FQAwjTvk/Tg==} engines: {node: '>= 18'} dependencies: - '@octokit/types': 12.5.0 + '@octokit/types': 12.6.0 dev: false /@octokit/request@8.1.0: @@ -1494,83 +1494,83 @@ packages: graceful-fs: 4.2.11 dev: true - /lefthook-darwin-arm64@1.6.1: - resolution: {integrity: sha512-q6+sYr2Dpt6YnBGXRjMFcXZUnVB97nH+s7EP/tX8m9ewvQxLPqIiUPyAumfyJ2Siomkc5WgAinG+kT63VjUN3A==} + /lefthook-darwin-arm64@1.6.4: + resolution: {integrity: sha512-dXIQXr02718sqJu8GwIFewEoFqxMReINy2nzVlx9X9pLEKylgIJ15K/hI3gMziZycAGaecQaWVOUh/yEKXM1zQ==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-darwin-x64@1.6.1: - resolution: {integrity: sha512-utm7FwtbW8SxGMALIw5/iG4loYS2FI0crDKp/YIamrZgQr6M4pS2C3rxGj5OwiHFIm3arVU+3VZywdvRLJAw0w==} + /lefthook-darwin-x64@1.6.4: + resolution: {integrity: sha512-hPqoOPxpJFEKei7SyCbJUGXcz9u8Ir0GHQYkKKQA/8/dhkMOCQ91YbpeNozMnXcvFYcYaiDr+NB0bOZxn9DzAA==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /lefthook-freebsd-arm64@1.6.1: - resolution: {integrity: sha512-F2BoDnGznkJyn6lyhmXpu62yq7SMCeHAl3Bl8c+P6mXfmatjjxEpVmrzRuzKMPd/MRGpy2B/glkuyO4wZZazow==} + /lefthook-freebsd-arm64@1.6.4: + resolution: {integrity: sha512-9q/NBdZ41UL86AwGomW4AgIXviZZzZ1x8pWaWqwDeMc+l/JKwqEWPTbb2TVHzlk0rabZ2LEOLhx2RwYQXa9wcA==} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-freebsd-x64@1.6.1: - resolution: {integrity: sha512-/NBjMUtnwvdc/p821sfPnZCbWZ6FQkAvnvjoaQu6tkajKZbZYSKsl7UtAicO0nT+79BQFt7TbaZjpua2T9tM5w==} + /lefthook-freebsd-x64@1.6.4: + resolution: {integrity: sha512-I4pJITBFf83lMxVEBgLkT3DF0uq0yo3I8YuB74dYOYzPhnNDr9IOp7CTT7KU7+hlMRRIWSvuup/ODsHP+J5Tfg==} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /lefthook-linux-arm64@1.6.1: - resolution: {integrity: sha512-ke+2ni/bmxgYJSRsH+uIYYfTLj2It7WP+mcF4rfJHRbzn5yDYIjFgylUMC2CgW5urS4DSbxcRIbAqLY3OXAHnw==} + /lefthook-linux-arm64@1.6.4: + resolution: {integrity: sha512-Eh1rDmmH7IJbw5Wky+wWd6ZWPkL/mqJqts2BT/3m9/27GADPLaAVV8PMmjPbow8B+4leKdqM9xSr4L9Kte6/mA==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-linux-x64@1.6.1: - resolution: {integrity: sha512-/HLkl9jt3XRjT0RPaLpAgUQmvp4zV/KKZ/8x6xslPl89krv3ZkHKKrqeaHdhiengq3hzx3N+KbOfFcxBRzdT6A==} + /lefthook-linux-x64@1.6.4: + resolution: {integrity: sha512-prsTjZ2BwX21+Xk0/KVOi2OcZtFRtPqPbQ/nnrQNpFriDkMqp8s1uIywrAGtyG+LJ7YCPYVhgO5pZOQqp4zkEA==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /lefthook-windows-arm64@1.6.1: - resolution: {integrity: sha512-RyQ8S4/45BpJpRPy7KsOuJeXQ5FOa7MASoPtOYvrXt4A8kayCv1jlGs7MTv3XJbUosCJhfNpw3ReeHVGfw1KIw==} + /lefthook-windows-arm64@1.6.4: + resolution: {integrity: sha512-bJ+rkMMjJkKhRaCwSLX+5KaJgPoj5jIVBee8jOAXB1nPTlOCj6QJqeGqTLISr098SDhhEsmTbJoa+HyIBbs/ow==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook-windows-x64@1.6.1: - resolution: {integrity: sha512-poYLk2tfg1Ncr4aZeFuhHjv1qH6f9hX3tV1FOK2MfWkXkRTYPl6MF5h/ONMIv71BsLjGbAA7LNXM5Mj4/B//lQ==} + /lefthook-windows-x64@1.6.4: + resolution: {integrity: sha512-XMA4mN/l5fK0FsTCKX3KywJv2Zcb9ZZ8hDV4dnjI7X1/DkLkByIOZesZN/8p3Oxbzdc9dOFKozo8RiLUsV19Og==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /lefthook@1.6.1: - resolution: {integrity: sha512-1T+tk0V6ubZgiZJGi39QlLMAcgEw+lhoDeSpT3L8Y/f8nUpJW9ntcMOmt+uvMfQ3TVjNcR1r/Lhtm7gTqgdcPg==} + /lefthook@1.6.4: + resolution: {integrity: sha512-to9j+24a65g6YR1mmwu+GaCm08oZGalc1rIHp4xJ6kMtYFCQO533UNLQaFcryNkcXeW+ZOc6MNY1eoQtd7/PQQ==} hasBin: true requiresBuild: true optionalDependencies: - lefthook-darwin-arm64: 1.6.1 - lefthook-darwin-x64: 1.6.1 - lefthook-freebsd-arm64: 1.6.1 - lefthook-freebsd-x64: 1.6.1 - lefthook-linux-arm64: 1.6.1 - lefthook-linux-x64: 1.6.1 - lefthook-windows-arm64: 1.6.1 - lefthook-windows-x64: 1.6.1 + lefthook-darwin-arm64: 1.6.4 + lefthook-darwin-x64: 1.6.4 + lefthook-freebsd-arm64: 1.6.4 + lefthook-freebsd-x64: 1.6.4 + lefthook-linux-arm64: 1.6.4 + lefthook-linux-x64: 1.6.4 + lefthook-windows-arm64: 1.6.4 + lefthook-windows-x64: 1.6.4 dev: true /lru-cache@5.1.1: From 2f1f99a1c8d6c119a7abec74c5f7f715a4d3b0b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bergstr=C3=B6m?= Date: Sun, 10 Mar 2024 17:45:14 -0300 Subject: [PATCH 22/23] fix: look for version in pnpm `devDependencies` (#67) --- src/version.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/version.ts b/src/version.ts index 3adbe96..19cd5b2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,10 +1,10 @@ import { existsSync } from "node:fs"; +import { readFile } from "node:fs/promises"; import { join } from "node:path"; import { info, warning } from "@actions/core"; -import { Octokit } from "@octokit/rest"; -import { readFile } from "fs/promises"; +import type { Octokit } from "@octokit/rest"; import { - SemVer, + type SemVer, coerce, maxSatisfying, rsort, @@ -87,7 +87,10 @@ const extractVersionFromPnpmLockFile = async ( const lockfile = parse( await readFile(join(root, "pnpm-lock.yaml"), "utf8"), ); - return lockfile.dependencies?.["@biomejs/biome"]?.version; + return ( + lockfile.devDependencies?.["@biomejs/biome"]?.version ?? + lockfile.dependencies?.["@biomejs/biome"]?.version + ); } catch { return undefined; } From b9af8bac86b0da736cfbfadbfeb3f7463da083f2 Mon Sep 17 00:00:00 2001 From: Nicolas Hedger Date: Sun, 10 Mar 2024 21:49:32 +0100 Subject: [PATCH 23/23] chore: update dist --- dist/index.mjs | 1034 +++++++++++++++++++++++++----------------------- 1 file changed, 542 insertions(+), 492 deletions(-) diff --git a/dist/index.mjs b/dist/index.mjs index 6df50e2..dd7d812 100644 --- a/dist/index.mjs +++ b/dist/index.mjs @@ -7177,7 +7177,7 @@ legacyRestEndpointMethods.VERSION = VERSION; /***/ }), -/***/ 4910: +/***/ 8327: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { @@ -7310,7 +7310,7 @@ var VERSION = "8.1.0"; // pkg/dist-src/fetch-wrapper.js var import_is_plain_object = __nccwpck_require__(7352); -var import_request_error = __nccwpck_require__(4910); +var import_request_error = __nccwpck_require__(8327); // pkg/dist-src/get-buffer-response.js function getBufferResponse(response) { @@ -7785,7 +7785,7 @@ exports.isPlainObject = isPlainObject; // A linked list to keep track of recently-used-ness -const Yallist = __nccwpck_require__(694) +const Yallist = __nccwpck_require__(901) const MAX = Symbol('max') const LENGTH = Symbol('length') @@ -9819,7 +9819,7 @@ function coerce (version, options) { /***/ }), -/***/ 8160: +/***/ 9525: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { const ANY = Symbol('SemVer ANY') @@ -9957,17 +9957,17 @@ class Comparator { module.exports = Comparator -const parseOptions = __nccwpck_require__(4512) -const { safeRe: re, t } = __nccwpck_require__(8649) -const cmp = __nccwpck_require__(7488) -const debug = __nccwpck_require__(8191) -const SemVer = __nccwpck_require__(2210) -const Range = __nccwpck_require__(71) +const parseOptions = __nccwpck_require__(8212) +const { safeRe: re, t } = __nccwpck_require__(1529) +const cmp = __nccwpck_require__(4057) +const debug = __nccwpck_require__(4743) +const SemVer = __nccwpck_require__(313) +const Range = __nccwpck_require__(6086) /***/ }), -/***/ 71: +/***/ 6086: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // hoisted class for cyclic dependency @@ -10173,18 +10173,18 @@ module.exports = Range const LRU = __nccwpck_require__(3918) const cache = new LRU({ max: 1000 }) -const parseOptions = __nccwpck_require__(4512) -const Comparator = __nccwpck_require__(8160) -const debug = __nccwpck_require__(8191) -const SemVer = __nccwpck_require__(2210) +const parseOptions = __nccwpck_require__(8212) +const Comparator = __nccwpck_require__(9525) +const debug = __nccwpck_require__(4743) +const SemVer = __nccwpck_require__(313) const { safeRe: re, t, comparatorTrimReplace, tildeTrimReplace, caretTrimReplace, -} = __nccwpck_require__(8649) -const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __nccwpck_require__(7621) +} = __nccwpck_require__(1529) +const { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = __nccwpck_require__(3449) const isNullSet = c => c.value === '<0.0.0-0' const isAny = c => c.value === '' @@ -10513,15 +10513,15 @@ const testSet = (set, version, options) => { /***/ }), -/***/ 2210: +/***/ 313: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const debug = __nccwpck_require__(8191) -const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(7621) -const { safeRe: re, t } = __nccwpck_require__(8649) +const debug = __nccwpck_require__(4743) +const { MAX_LENGTH, MAX_SAFE_INTEGER } = __nccwpck_require__(3449) +const { safeRe: re, t } = __nccwpck_require__(1529) -const parseOptions = __nccwpck_require__(4512) -const { compareIdentifiers } = __nccwpck_require__(5613) +const parseOptions = __nccwpck_require__(8212) +const { compareIdentifiers } = __nccwpck_require__(6957) class SemVer { constructor (version, options) { options = parseOptions(options) @@ -10822,10 +10822,10 @@ module.exports = SemVer /***/ }), -/***/ 8185: +/***/ 3456: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const parse = __nccwpck_require__(6894) +const parse = __nccwpck_require__(5675) const clean = (version, options) => { const s = parse(version.trim().replace(/^[=v]+/, ''), options) return s ? s.version : null @@ -10835,15 +10835,15 @@ module.exports = clean /***/ }), -/***/ 7488: +/***/ 4057: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const eq = __nccwpck_require__(8704) -const neq = __nccwpck_require__(6451) -const gt = __nccwpck_require__(6086) -const gte = __nccwpck_require__(3822) -const lt = __nccwpck_require__(6847) -const lte = __nccwpck_require__(583) +const eq = __nccwpck_require__(6335) +const neq = __nccwpck_require__(4959) +const gt = __nccwpck_require__(5832) +const gte = __nccwpck_require__(6472) +const lt = __nccwpck_require__(6168) +const lte = __nccwpck_require__(3879) const cmp = (a, op, b, loose) => { switch (op) { @@ -10894,12 +10894,12 @@ module.exports = cmp /***/ }), -/***/ 1203: +/***/ 6028: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) -const parse = __nccwpck_require__(6894) -const { safeRe: re, t } = __nccwpck_require__(8649) +const SemVer = __nccwpck_require__(313) +const parse = __nccwpck_require__(5675) +const { safeRe: re, t } = __nccwpck_require__(1529) const coerce = (version, options) => { if (version instanceof SemVer) { @@ -10918,45 +10918,53 @@ const coerce = (version, options) => { let match = null if (!options.rtl) { - match = version.match(re[t.COERCE]) + match = version.match(options.includePrerelease ? re[t.COERCEFULL] : re[t.COERCE]) } else { // Find the right-most coercible string that does not share // a terminus with a more left-ward coercible string. // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4' + // With includePrerelease option set, '1.2.3.4-rc' wants to coerce '2.3.4-rc', not '2.3.4' // // Walk through the string checking with a /g regexp // Manually set the index so as to pick up overlapping matches. // Stop when we get a match that ends at the string end, since no // coercible string can be more right-ward without the same terminus. + const coerceRtlRegex = options.includePrerelease ? re[t.COERCERTLFULL] : re[t.COERCERTL] let next - while ((next = re[t.COERCERTL].exec(version)) && + while ((next = coerceRtlRegex.exec(version)) && (!match || match.index + match[0].length !== version.length) ) { if (!match || next.index + next[0].length !== match.index + match[0].length) { match = next } - re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length + coerceRtlRegex.lastIndex = next.index + next[1].length + next[2].length } // leave it in a clean state - re[t.COERCERTL].lastIndex = -1 + coerceRtlRegex.lastIndex = -1 } if (match === null) { return null } - return parse(`${match[2]}.${match[3] || '0'}.${match[4] || '0'}`, options) + const major = match[2] + const minor = match[3] || '0' + const patch = match[4] || '0' + const prerelease = options.includePrerelease && match[5] ? `-${match[5]}` : '' + const build = options.includePrerelease && match[6] ? `+${match[6]}` : '' + + return parse(`${major}.${minor}.${patch}${prerelease}${build}`, options) } module.exports = coerce /***/ }), -/***/ 4564: +/***/ 5375: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) +const SemVer = __nccwpck_require__(313) const compareBuild = (a, b, loose) => { const versionA = new SemVer(a, loose) const versionB = new SemVer(b, loose) @@ -10967,20 +10975,20 @@ module.exports = compareBuild /***/ }), -/***/ 7109: +/***/ 3964: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const compareLoose = (a, b) => compare(a, b, true) module.exports = compareLoose /***/ }), -/***/ 3410: +/***/ 661: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) +const SemVer = __nccwpck_require__(313) const compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose)) @@ -10989,10 +10997,10 @@ module.exports = compare /***/ }), -/***/ 8259: +/***/ 3923: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const parse = __nccwpck_require__(6894) +const parse = __nccwpck_require__(5675) const diff = (version1, version2) => { const v1 = parse(version1, null, true) @@ -11061,40 +11069,40 @@ module.exports = diff /***/ }), -/***/ 8704: +/***/ 6335: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const eq = (a, b, loose) => compare(a, b, loose) === 0 module.exports = eq /***/ }), -/***/ 6086: +/***/ 5832: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const gt = (a, b, loose) => compare(a, b, loose) > 0 module.exports = gt /***/ }), -/***/ 3822: +/***/ 6472: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const gte = (a, b, loose) => compare(a, b, loose) >= 0 module.exports = gte /***/ }), -/***/ 3128: +/***/ 5634: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) +const SemVer = __nccwpck_require__(313) const inc = (version, release, options, identifier, identifierBase) => { if (typeof (options) === 'string') { @@ -11117,60 +11125,60 @@ module.exports = inc /***/ }), -/***/ 6847: +/***/ 6168: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const lt = (a, b, loose) => compare(a, b, loose) < 0 module.exports = lt /***/ }), -/***/ 583: +/***/ 3879: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const lte = (a, b, loose) => compare(a, b, loose) <= 0 module.exports = lte /***/ }), -/***/ 6943: +/***/ 6942: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) +const SemVer = __nccwpck_require__(313) const major = (a, loose) => new SemVer(a, loose).major module.exports = major /***/ }), -/***/ 395: +/***/ 5074: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) +const SemVer = __nccwpck_require__(313) const minor = (a, loose) => new SemVer(a, loose).minor module.exports = minor /***/ }), -/***/ 6451: +/***/ 4959: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const neq = (a, b, loose) => compare(a, b, loose) !== 0 module.exports = neq /***/ }), -/***/ 6894: +/***/ 5675: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) +const SemVer = __nccwpck_require__(313) const parse = (version, options, throwErrors = false) => { if (version instanceof SemVer) { return version @@ -11190,20 +11198,20 @@ module.exports = parse /***/ }), -/***/ 1034: +/***/ 1459: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) +const SemVer = __nccwpck_require__(313) const patch = (a, loose) => new SemVer(a, loose).patch module.exports = patch /***/ }), -/***/ 413: +/***/ 1645: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const parse = __nccwpck_require__(6894) +const parse = __nccwpck_require__(5675) const prerelease = (version, options) => { const parsed = parse(version, options) return (parsed && parsed.prerelease.length) ? parsed.prerelease : null @@ -11213,30 +11221,30 @@ module.exports = prerelease /***/ }), -/***/ 5075: +/***/ 3306: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compare = __nccwpck_require__(3410) +const compare = __nccwpck_require__(661) const rcompare = (a, b, loose) => compare(b, a, loose) module.exports = rcompare /***/ }), -/***/ 3164: +/***/ 328: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compareBuild = __nccwpck_require__(4564) +const compareBuild = __nccwpck_require__(5375) const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose)) module.exports = rsort /***/ }), -/***/ 9927: +/***/ 8345: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const Range = __nccwpck_require__(71) +const Range = __nccwpck_require__(6086) const satisfies = (version, range, options) => { try { range = new Range(range, options) @@ -11250,20 +11258,20 @@ module.exports = satisfies /***/ }), -/***/ 5536: +/***/ 5796: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const compareBuild = __nccwpck_require__(4564) +const compareBuild = __nccwpck_require__(5375) const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose)) module.exports = sort /***/ }), -/***/ 901: +/***/ 5599: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const parse = __nccwpck_require__(6894) +const parse = __nccwpck_require__(5675) const valid = (version, options) => { const v = parse(version, options) return v ? v.version : null @@ -11273,51 +11281,51 @@ module.exports = valid /***/ }), -/***/ 1026: +/***/ 117: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // just pre-load all the stuff that index.js lazily exports -const internalRe = __nccwpck_require__(8649) -const constants = __nccwpck_require__(7621) -const SemVer = __nccwpck_require__(2210) -const identifiers = __nccwpck_require__(5613) -const parse = __nccwpck_require__(6894) -const valid = __nccwpck_require__(901) -const clean = __nccwpck_require__(8185) -const inc = __nccwpck_require__(3128) -const diff = __nccwpck_require__(8259) -const major = __nccwpck_require__(6943) -const minor = __nccwpck_require__(395) -const patch = __nccwpck_require__(1034) -const prerelease = __nccwpck_require__(413) -const compare = __nccwpck_require__(3410) -const rcompare = __nccwpck_require__(5075) -const compareLoose = __nccwpck_require__(7109) -const compareBuild = __nccwpck_require__(4564) -const sort = __nccwpck_require__(5536) -const rsort = __nccwpck_require__(3164) -const gt = __nccwpck_require__(6086) -const lt = __nccwpck_require__(6847) -const eq = __nccwpck_require__(8704) -const neq = __nccwpck_require__(6451) -const gte = __nccwpck_require__(3822) -const lte = __nccwpck_require__(583) -const cmp = __nccwpck_require__(7488) -const coerce = __nccwpck_require__(1203) -const Comparator = __nccwpck_require__(8160) -const Range = __nccwpck_require__(71) -const satisfies = __nccwpck_require__(9927) -const toComparators = __nccwpck_require__(1435) -const maxSatisfying = __nccwpck_require__(3609) -const minSatisfying = __nccwpck_require__(8083) -const minVersion = __nccwpck_require__(7988) -const validRange = __nccwpck_require__(5571) -const outside = __nccwpck_require__(9754) -const gtr = __nccwpck_require__(5422) -const ltr = __nccwpck_require__(3601) -const intersects = __nccwpck_require__(3234) -const simplifyRange = __nccwpck_require__(1567) -const subset = __nccwpck_require__(6053) +const internalRe = __nccwpck_require__(1529) +const constants = __nccwpck_require__(3449) +const SemVer = __nccwpck_require__(313) +const identifiers = __nccwpck_require__(6957) +const parse = __nccwpck_require__(5675) +const valid = __nccwpck_require__(5599) +const clean = __nccwpck_require__(3456) +const inc = __nccwpck_require__(5634) +const diff = __nccwpck_require__(3923) +const major = __nccwpck_require__(6942) +const minor = __nccwpck_require__(5074) +const patch = __nccwpck_require__(1459) +const prerelease = __nccwpck_require__(1645) +const compare = __nccwpck_require__(661) +const rcompare = __nccwpck_require__(3306) +const compareLoose = __nccwpck_require__(3964) +const compareBuild = __nccwpck_require__(5375) +const sort = __nccwpck_require__(5796) +const rsort = __nccwpck_require__(328) +const gt = __nccwpck_require__(5832) +const lt = __nccwpck_require__(6168) +const eq = __nccwpck_require__(6335) +const neq = __nccwpck_require__(4959) +const gte = __nccwpck_require__(6472) +const lte = __nccwpck_require__(3879) +const cmp = __nccwpck_require__(4057) +const coerce = __nccwpck_require__(6028) +const Comparator = __nccwpck_require__(9525) +const Range = __nccwpck_require__(6086) +const satisfies = __nccwpck_require__(8345) +const toComparators = __nccwpck_require__(7520) +const maxSatisfying = __nccwpck_require__(3367) +const minSatisfying = __nccwpck_require__(1272) +const minVersion = __nccwpck_require__(9687) +const validRange = __nccwpck_require__(7678) +const outside = __nccwpck_require__(6485) +const gtr = __nccwpck_require__(868) +const ltr = __nccwpck_require__(2180) +const intersects = __nccwpck_require__(7720) +const simplifyRange = __nccwpck_require__(464) +const subset = __nccwpck_require__(3452) module.exports = { parse, valid, @@ -11369,7 +11377,7 @@ module.exports = { /***/ }), -/***/ 7621: +/***/ 3449: /***/ ((module) => { // Note: this is the semver.org version of the spec that it implements @@ -11411,7 +11419,7 @@ module.exports = { /***/ }), -/***/ 8191: +/***/ 4743: /***/ ((module) => { const debug = ( @@ -11427,7 +11435,7 @@ module.exports = debug /***/ }), -/***/ 5613: +/***/ 6957: /***/ ((module) => { const numeric = /^[0-9]+$/ @@ -11457,7 +11465,7 @@ module.exports = { /***/ }), -/***/ 4512: +/***/ 8212: /***/ ((module) => { // parse out just the options we care about @@ -11479,15 +11487,15 @@ module.exports = parseOptions /***/ }), -/***/ 8649: +/***/ 1529: /***/ ((module, exports, __nccwpck_require__) => { const { MAX_SAFE_COMPONENT_LENGTH, MAX_SAFE_BUILD_LENGTH, MAX_LENGTH, -} = __nccwpck_require__(7621) -const debug = __nccwpck_require__(8191) +} = __nccwpck_require__(3449) +const debug = __nccwpck_require__(4743) exports = module.exports = {} // The actual regexps go on exports.re @@ -11638,12 +11646,17 @@ createToken('XRANGELOOSE', `^${src[t.GTLT]}\\s*${src[t.XRANGEPLAINLOOSE]}$`) // Coercion. // Extract anything that could conceivably be a part of a valid semver -createToken('COERCE', `${'(^|[^\\d])' + +createToken('COERCEPLAIN', `${'(^|[^\\d])' + '(\\d{1,'}${MAX_SAFE_COMPONENT_LENGTH}})` + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + - `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?` + + `(?:\\.(\\d{1,${MAX_SAFE_COMPONENT_LENGTH}}))?`) +createToken('COERCE', `${src[t.COERCEPLAIN]}(?:$|[^\\d])`) +createToken('COERCEFULL', src[t.COERCEPLAIN] + + `(?:${src[t.PRERELEASE]})?` + + `(?:${src[t.BUILD]})?` + `(?:$|[^\\d])`) createToken('COERCERTL', src[t.COERCE], true) +createToken('COERCERTLFULL', src[t.COERCEFULL], true) // Tilde ranges. // Meaning is "reasonably at or greater than" @@ -11698,21 +11711,21 @@ createToken('GTE0PRE', '^\\s*>=\\s*0\\.0\\.0-0\\s*$') /***/ }), -/***/ 5422: +/***/ 868: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // Determine if version is greater than all the versions possible in the range. -const outside = __nccwpck_require__(9754) +const outside = __nccwpck_require__(6485) const gtr = (version, range, options) => outside(version, range, '>', options) module.exports = gtr /***/ }), -/***/ 3234: +/***/ 7720: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const Range = __nccwpck_require__(71) +const Range = __nccwpck_require__(6086) const intersects = (r1, r2, options) => { r1 = new Range(r1, options) r2 = new Range(r2, options) @@ -11723,10 +11736,10 @@ module.exports = intersects /***/ }), -/***/ 3601: +/***/ 2180: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const outside = __nccwpck_require__(9754) +const outside = __nccwpck_require__(6485) // Determine if version is less than all the versions possible in the range const ltr = (version, range, options) => outside(version, range, '<', options) module.exports = ltr @@ -11734,11 +11747,11 @@ module.exports = ltr /***/ }), -/***/ 3609: +/***/ 3367: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) -const Range = __nccwpck_require__(71) +const SemVer = __nccwpck_require__(313) +const Range = __nccwpck_require__(6086) const maxSatisfying = (versions, range, options) => { let max = null @@ -11766,11 +11779,11 @@ module.exports = maxSatisfying /***/ }), -/***/ 8083: +/***/ 1272: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) -const Range = __nccwpck_require__(71) +const SemVer = __nccwpck_require__(313) +const Range = __nccwpck_require__(6086) const minSatisfying = (versions, range, options) => { let min = null let minSV = null @@ -11797,12 +11810,12 @@ module.exports = minSatisfying /***/ }), -/***/ 7988: +/***/ 9687: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) -const Range = __nccwpck_require__(71) -const gt = __nccwpck_require__(6086) +const SemVer = __nccwpck_require__(313) +const Range = __nccwpck_require__(6086) +const gt = __nccwpck_require__(5832) const minVersion = (range, loose) => { range = new Range(range, loose) @@ -11865,18 +11878,18 @@ module.exports = minVersion /***/ }), -/***/ 9754: +/***/ 6485: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const SemVer = __nccwpck_require__(2210) -const Comparator = __nccwpck_require__(8160) +const SemVer = __nccwpck_require__(313) +const Comparator = __nccwpck_require__(9525) const { ANY } = Comparator -const Range = __nccwpck_require__(71) -const satisfies = __nccwpck_require__(9927) -const gt = __nccwpck_require__(6086) -const lt = __nccwpck_require__(6847) -const lte = __nccwpck_require__(583) -const gte = __nccwpck_require__(3822) +const Range = __nccwpck_require__(6086) +const satisfies = __nccwpck_require__(8345) +const gt = __nccwpck_require__(5832) +const lt = __nccwpck_require__(6168) +const lte = __nccwpck_require__(3879) +const gte = __nccwpck_require__(6472) const outside = (version, range, hilo, options) => { version = new SemVer(version, options) @@ -11952,14 +11965,14 @@ module.exports = outside /***/ }), -/***/ 1567: +/***/ 464: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { // given a set of versions and a range, create a "simplified" range // that includes the same versions that the original range does // If the original range is shorter than the simplified one, return that. -const satisfies = __nccwpck_require__(9927) -const compare = __nccwpck_require__(3410) +const satisfies = __nccwpck_require__(8345) +const compare = __nccwpck_require__(661) module.exports = (versions, range, options) => { const set = [] let first = null @@ -12006,14 +12019,14 @@ module.exports = (versions, range, options) => { /***/ }), -/***/ 6053: +/***/ 3452: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const Range = __nccwpck_require__(71) -const Comparator = __nccwpck_require__(8160) +const Range = __nccwpck_require__(6086) +const Comparator = __nccwpck_require__(9525) const { ANY } = Comparator -const satisfies = __nccwpck_require__(9927) -const compare = __nccwpck_require__(3410) +const satisfies = __nccwpck_require__(8345) +const compare = __nccwpck_require__(661) // Complex range `r1 || r2 || ...` is a subset of `R1 || R2 || ...` iff: // - Every simple range `r1, r2, ...` is a null set, OR @@ -12260,10 +12273,10 @@ module.exports = subset /***/ }), -/***/ 1435: +/***/ 7520: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const Range = __nccwpck_require__(71) +const Range = __nccwpck_require__(6086) // Mostly just for testing and legacy API reasons const toComparators = (range, options) => @@ -12275,10 +12288,10 @@ module.exports = toComparators /***/ }), -/***/ 5571: +/***/ 7678: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { -const Range = __nccwpck_require__(71) +const Range = __nccwpck_require__(6086) const validRange = (range, options) => { try { // Return '*' instead of '' so that truthiness works. @@ -13367,7 +13380,7 @@ module.exports = function (Yallist) { /***/ }), -/***/ 694: +/***/ 901: /***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { @@ -13905,18 +13918,18 @@ module.exports = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("util"); /***/ }), -/***/ 4826: +/***/ 818: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var Scalar = __nccwpck_require__(7920); -var YAMLMap = __nccwpck_require__(500); -var YAMLSeq = __nccwpck_require__(5257); -var resolveBlockMap = __nccwpck_require__(7135); -var resolveBlockSeq = __nccwpck_require__(9557); -var resolveFlowCollection = __nccwpck_require__(5125); +var identity = __nccwpck_require__(7964); +var Scalar = __nccwpck_require__(4882); +var YAMLMap = __nccwpck_require__(6003); +var YAMLSeq = __nccwpck_require__(2282); +var resolveBlockMap = __nccwpck_require__(5574); +var resolveBlockSeq = __nccwpck_require__(3271); +var resolveFlowCollection = __nccwpck_require__(3012); function resolveCollection(CN, ctx, token, onError, tagName, tag) { const coll = token.type === 'block-map' @@ -13990,15 +14003,15 @@ exports.composeCollection = composeCollection; /***/ }), -/***/ 7515: +/***/ 5141: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Document = __nccwpck_require__(8790); -var composeNode = __nccwpck_require__(4393); -var resolveEnd = __nccwpck_require__(4863); -var resolveProps = __nccwpck_require__(4178); +var Document = __nccwpck_require__(1726); +var composeNode = __nccwpck_require__(9500); +var resolveEnd = __nccwpck_require__(2704); +var resolveProps = __nccwpck_require__(9914); function composeDoc(options, directives, { offset, start, value, end }, onError) { const opts = Object.assign({ _directives: directives }, options); @@ -14040,16 +14053,16 @@ exports.composeDoc = composeDoc; /***/ }), -/***/ 4393: +/***/ 9500: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Alias = __nccwpck_require__(6237); -var composeCollection = __nccwpck_require__(4826); -var composeScalar = __nccwpck_require__(8070); -var resolveEnd = __nccwpck_require__(4863); -var utilEmptyScalarPosition = __nccwpck_require__(1362); +var Alias = __nccwpck_require__(3345); +var composeCollection = __nccwpck_require__(818); +var composeScalar = __nccwpck_require__(5095); +var resolveEnd = __nccwpck_require__(2704); +var utilEmptyScalarPosition = __nccwpck_require__(6516); const CN = { composeNode, composeEmptyNode }; function composeNode(ctx, token, props, onError) { @@ -14142,15 +14155,15 @@ exports.composeNode = composeNode; /***/ }), -/***/ 8070: +/***/ 5095: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var Scalar = __nccwpck_require__(7920); -var resolveBlockScalar = __nccwpck_require__(9088); -var resolveFlowScalar = __nccwpck_require__(9005); +var identity = __nccwpck_require__(7964); +var Scalar = __nccwpck_require__(4882); +var resolveBlockScalar = __nccwpck_require__(6594); +var resolveFlowScalar = __nccwpck_require__(5030); function composeScalar(ctx, token, tagToken, onError) { const { value, type, comment, range } = token.type === 'block-scalar' @@ -14231,17 +14244,17 @@ exports.composeScalar = composeScalar; /***/ }), -/***/ 9562: +/***/ 6343: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var directives = __nccwpck_require__(5675); -var Document = __nccwpck_require__(8790); -var errors = __nccwpck_require__(7222); -var identity = __nccwpck_require__(4464); -var composeDoc = __nccwpck_require__(7515); -var resolveEnd = __nccwpck_require__(4863); +var directives = __nccwpck_require__(3699); +var Document = __nccwpck_require__(1726); +var errors = __nccwpck_require__(3433); +var identity = __nccwpck_require__(7964); +var composeDoc = __nccwpck_require__(5141); +var resolveEnd = __nccwpck_require__(2704); function getErrorPos(src) { if (typeof src === 'number') @@ -14459,17 +14472,17 @@ exports.Composer = Composer; /***/ }), -/***/ 7135: +/***/ 5574: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Pair = __nccwpck_require__(5987); -var YAMLMap = __nccwpck_require__(500); -var resolveProps = __nccwpck_require__(4178); -var utilContainsNewline = __nccwpck_require__(9412); -var utilFlowIndentCheck = __nccwpck_require__(1577); -var utilMapIncludes = __nccwpck_require__(8302); +var Pair = __nccwpck_require__(6085); +var YAMLMap = __nccwpck_require__(6003); +var resolveProps = __nccwpck_require__(9914); +var utilContainsNewline = __nccwpck_require__(9737); +var utilFlowIndentCheck = __nccwpck_require__(5758); +var utilMapIncludes = __nccwpck_require__(8656); const startColMsg = 'All mapping items must start at the same column'; function resolveBlockMap({ composeNode, composeEmptyNode }, ctx, bm, onError, tag) { @@ -14579,12 +14592,12 @@ exports.resolveBlockMap = resolveBlockMap; /***/ }), -/***/ 9088: +/***/ 6594: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); +var Scalar = __nccwpck_require__(4882); function resolveBlockScalar(scalar, strict, onError) { const start = scalar.offset; @@ -14782,14 +14795,14 @@ exports.resolveBlockScalar = resolveBlockScalar; /***/ }), -/***/ 9557: +/***/ 3271: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var YAMLSeq = __nccwpck_require__(5257); -var resolveProps = __nccwpck_require__(4178); -var utilFlowIndentCheck = __nccwpck_require__(1577); +var YAMLSeq = __nccwpck_require__(2282); +var resolveProps = __nccwpck_require__(9914); +var utilFlowIndentCheck = __nccwpck_require__(5758); function resolveBlockSeq({ composeNode, composeEmptyNode }, ctx, bs, onError, tag) { const NodeClass = tag?.nodeClass ?? YAMLSeq.YAMLSeq; @@ -14837,7 +14850,7 @@ exports.resolveBlockSeq = resolveBlockSeq; /***/ }), -/***/ 4863: +/***/ 2704: /***/ ((__unused_webpack_module, exports) => { @@ -14883,19 +14896,19 @@ exports.resolveEnd = resolveEnd; /***/ }), -/***/ 5125: +/***/ 3012: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var Pair = __nccwpck_require__(5987); -var YAMLMap = __nccwpck_require__(500); -var YAMLSeq = __nccwpck_require__(5257); -var resolveEnd = __nccwpck_require__(4863); -var resolveProps = __nccwpck_require__(4178); -var utilContainsNewline = __nccwpck_require__(9412); -var utilMapIncludes = __nccwpck_require__(8302); +var identity = __nccwpck_require__(7964); +var Pair = __nccwpck_require__(6085); +var YAMLMap = __nccwpck_require__(6003); +var YAMLSeq = __nccwpck_require__(2282); +var resolveEnd = __nccwpck_require__(2704); +var resolveProps = __nccwpck_require__(9914); +var utilContainsNewline = __nccwpck_require__(9737); +var utilMapIncludes = __nccwpck_require__(8656); const blockMsg = 'Block collections are not allowed within flow collections'; const isBlock = (token) => token && (token.type === 'block-map' || token.type === 'block-seq'); @@ -15091,13 +15104,13 @@ exports.resolveFlowCollection = resolveFlowCollection; /***/ }), -/***/ 9005: +/***/ 5030: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); -var resolveEnd = __nccwpck_require__(4863); +var Scalar = __nccwpck_require__(4882); +var resolveEnd = __nccwpck_require__(2704); function resolveFlowScalar(scalar, strict, onError) { const { offset, type, source, end } = scalar; @@ -15287,19 +15300,19 @@ function foldNewline(source, offset) { return { fold, offset }; } const escapeCodes = { - '0': '\0', - a: '\x07', - b: '\b', - e: '\x1b', - f: '\f', - n: '\n', - r: '\r', - t: '\t', - v: '\v', - N: '\u0085', - _: '\u00a0', - L: '\u2028', - P: '\u2029', + '0': '\0', // null character + a: '\x07', // bell character + b: '\b', // backspace + e: '\x1b', // escape character + f: '\f', // form feed + n: '\n', // line feed + r: '\r', // carriage return + t: '\t', // horizontal tab + v: '\v', // vertical tab + N: '\u0085', // Unicode next line + _: '\u00a0', // Unicode non-breaking space + L: '\u2028', // Unicode line separator + P: '\u2029', // Unicode paragraph separator ' ': ' ', '"': '"', '/': '/', @@ -15323,7 +15336,7 @@ exports.resolveFlowScalar = resolveFlowScalar; /***/ }), -/***/ 4178: +/***/ 9914: /***/ ((__unused_webpack_module, exports) => { @@ -15466,7 +15479,7 @@ exports.resolveProps = resolveProps; /***/ }), -/***/ 9412: +/***/ 9737: /***/ ((__unused_webpack_module, exports) => { @@ -15509,7 +15522,7 @@ exports.containsNewline = containsNewline; /***/ }), -/***/ 1362: +/***/ 6516: /***/ ((__unused_webpack_module, exports) => { @@ -15545,12 +15558,12 @@ exports.emptyScalarPosition = emptyScalarPosition; /***/ }), -/***/ 1577: +/***/ 5758: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var utilContainsNewline = __nccwpck_require__(9412); +var utilContainsNewline = __nccwpck_require__(9737); function flowIndentCheck(indent, fc, onError) { if (fc?.type === 'flow-collection') { @@ -15569,12 +15582,12 @@ exports.flowIndentCheck = flowIndentCheck; /***/ }), -/***/ 8302: +/***/ 8656: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); +var identity = __nccwpck_require__(7964); function mapIncludes(ctx, items, search) { const { uniqueKeys } = ctx.options; @@ -15595,22 +15608,22 @@ exports.mapIncludes = mapIncludes; /***/ }), -/***/ 8790: +/***/ 1726: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Alias = __nccwpck_require__(6237); -var Collection = __nccwpck_require__(1471); -var identity = __nccwpck_require__(4464); -var Pair = __nccwpck_require__(5987); -var toJS = __nccwpck_require__(6342); -var Schema = __nccwpck_require__(4023); -var stringifyDocument = __nccwpck_require__(8782); -var anchors = __nccwpck_require__(3242); -var applyReviver = __nccwpck_require__(3772); -var createNode = __nccwpck_require__(2797); -var directives = __nccwpck_require__(5675); +var Alias = __nccwpck_require__(3345); +var Collection = __nccwpck_require__(7330); +var identity = __nccwpck_require__(7964); +var Pair = __nccwpck_require__(6085); +var toJS = __nccwpck_require__(2505); +var Schema = __nccwpck_require__(8596); +var stringifyDocument = __nccwpck_require__(7993); +var anchors = __nccwpck_require__(5170); +var applyReviver = __nccwpck_require__(8527); +var createNode = __nccwpck_require__(6577); +var directives = __nccwpck_require__(3699); class Document { constructor(value, replacer, options) { @@ -15938,13 +15951,13 @@ exports.Document = Document; /***/ }), -/***/ 3242: +/***/ 5170: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var visit = __nccwpck_require__(6917); +var identity = __nccwpck_require__(7964); +var visit = __nccwpck_require__(8206); /** * Verify that the input string is a valid anchor. @@ -16022,7 +16035,7 @@ exports.findNewAnchor = findNewAnchor; /***/ }), -/***/ 3772: +/***/ 8527: /***/ ((__unused_webpack_module, exports) => { @@ -16085,14 +16098,14 @@ exports.applyReviver = applyReviver; /***/ }), -/***/ 2797: +/***/ 6577: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Alias = __nccwpck_require__(6237); -var identity = __nccwpck_require__(4464); -var Scalar = __nccwpck_require__(7920); +var Alias = __nccwpck_require__(3345); +var identity = __nccwpck_require__(7964); +var Scalar = __nccwpck_require__(4882); const defaultTagPrefix = 'tag:yaml.org,2002:'; function findTagObject(value, tagName, tags) { @@ -16183,13 +16196,13 @@ exports.createNode = createNode; /***/ }), -/***/ 5675: +/***/ 3699: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var visit = __nccwpck_require__(6917); +var identity = __nccwpck_require__(7964); +var visit = __nccwpck_require__(8206); const escapeChars = { '!': '%21', @@ -16368,7 +16381,7 @@ exports.Directives = Directives; /***/ }), -/***/ 7222: +/***/ 3433: /***/ ((__unused_webpack_module, exports) => { @@ -16437,28 +16450,28 @@ exports.prettifyError = prettifyError; /***/ }), -/***/ 2825: +/***/ 7524: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { var __webpack_unused_export__; -var composer = __nccwpck_require__(9562); -var Document = __nccwpck_require__(8790); -var Schema = __nccwpck_require__(4023); -var errors = __nccwpck_require__(7222); -var Alias = __nccwpck_require__(6237); -var identity = __nccwpck_require__(4464); -var Pair = __nccwpck_require__(5987); -var Scalar = __nccwpck_require__(7920); -var YAMLMap = __nccwpck_require__(500); -var YAMLSeq = __nccwpck_require__(5257); -var cst = __nccwpck_require__(923); -var lexer = __nccwpck_require__(7641); -var lineCounter = __nccwpck_require__(3760); -var parser = __nccwpck_require__(1545); -var publicApi = __nccwpck_require__(6704); -var visit = __nccwpck_require__(6917); +var composer = __nccwpck_require__(6343); +var Document = __nccwpck_require__(1726); +var Schema = __nccwpck_require__(8596); +var errors = __nccwpck_require__(3433); +var Alias = __nccwpck_require__(3345); +var identity = __nccwpck_require__(7964); +var Pair = __nccwpck_require__(6085); +var Scalar = __nccwpck_require__(4882); +var YAMLMap = __nccwpck_require__(6003); +var YAMLSeq = __nccwpck_require__(2282); +var cst = __nccwpck_require__(6757); +var lexer = __nccwpck_require__(4192); +var lineCounter = __nccwpck_require__(9555); +var parser = __nccwpck_require__(2729); +var publicApi = __nccwpck_require__(6014); +var visit = __nccwpck_require__(8206); @@ -16495,7 +16508,7 @@ __webpack_unused_export__ = visit.visitAsync; /***/ }), -/***/ 2241: +/***/ 8770: /***/ ((__unused_webpack_module, exports) => { @@ -16521,16 +16534,16 @@ exports.warn = warn; /***/ }), -/***/ 6237: +/***/ 3345: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var anchors = __nccwpck_require__(3242); -var visit = __nccwpck_require__(6917); -var identity = __nccwpck_require__(4464); -var Node = __nccwpck_require__(5370); -var toJS = __nccwpck_require__(6342); +var anchors = __nccwpck_require__(5170); +var visit = __nccwpck_require__(8206); +var identity = __nccwpck_require__(7964); +var Node = __nccwpck_require__(7021); +var toJS = __nccwpck_require__(2505); class Alias extends Node.NodeBase { constructor(source) { @@ -16631,14 +16644,14 @@ exports.Alias = Alias; /***/ }), -/***/ 1471: +/***/ 7330: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var createNode = __nccwpck_require__(2797); -var identity = __nccwpck_require__(4464); -var Node = __nccwpck_require__(5370); +var createNode = __nccwpck_require__(6577); +var identity = __nccwpck_require__(7964); +var Node = __nccwpck_require__(7021); function collectionFromPath(schema, path, value) { let v = value; @@ -16790,14 +16803,14 @@ exports.isEmptyPath = isEmptyPath; /***/ }), -/***/ 5370: +/***/ 7021: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var applyReviver = __nccwpck_require__(3772); -var identity = __nccwpck_require__(4464); -var toJS = __nccwpck_require__(6342); +var applyReviver = __nccwpck_require__(8527); +var identity = __nccwpck_require__(7964); +var toJS = __nccwpck_require__(2505); class NodeBase { constructor(type) { @@ -16837,15 +16850,15 @@ exports.NodeBase = NodeBase; /***/ }), -/***/ 5987: +/***/ 6085: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var createNode = __nccwpck_require__(2797); -var stringifyPair = __nccwpck_require__(5412); -var addPairToJSMap = __nccwpck_require__(4095); -var identity = __nccwpck_require__(4464); +var createNode = __nccwpck_require__(6577); +var stringifyPair = __nccwpck_require__(1128); +var addPairToJSMap = __nccwpck_require__(664); +var identity = __nccwpck_require__(7964); function createPair(key, value, ctx) { const k = createNode.createNode(key, undefined, ctx); @@ -16883,14 +16896,14 @@ exports.createPair = createPair; /***/ }), -/***/ 7920: +/***/ 4882: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var Node = __nccwpck_require__(5370); -var toJS = __nccwpck_require__(6342); +var identity = __nccwpck_require__(7964); +var Node = __nccwpck_require__(7021); +var toJS = __nccwpck_require__(2505); const isScalarValue = (value) => !value || (typeof value !== 'function' && typeof value !== 'object'); class Scalar extends Node.NodeBase { @@ -16917,17 +16930,17 @@ exports.isScalarValue = isScalarValue; /***/ }), -/***/ 500: +/***/ 6003: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var stringifyCollection = __nccwpck_require__(9036); -var addPairToJSMap = __nccwpck_require__(4095); -var Collection = __nccwpck_require__(1471); -var identity = __nccwpck_require__(4464); -var Pair = __nccwpck_require__(5987); -var Scalar = __nccwpck_require__(7920); +var stringifyCollection = __nccwpck_require__(6149); +var addPairToJSMap = __nccwpck_require__(664); +var Collection = __nccwpck_require__(7330); +var identity = __nccwpck_require__(7964); +var Pair = __nccwpck_require__(6085); +var Scalar = __nccwpck_require__(4882); function findPair(items, key) { const k = identity.isScalar(key) ? key.value : key; @@ -17071,17 +17084,17 @@ exports.findPair = findPair; /***/ }), -/***/ 5257: +/***/ 2282: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var createNode = __nccwpck_require__(2797); -var stringifyCollection = __nccwpck_require__(9036); -var Collection = __nccwpck_require__(1471); -var identity = __nccwpck_require__(4464); -var Scalar = __nccwpck_require__(7920); -var toJS = __nccwpck_require__(6342); +var createNode = __nccwpck_require__(6577); +var stringifyCollection = __nccwpck_require__(6149); +var Collection = __nccwpck_require__(7330); +var identity = __nccwpck_require__(7964); +var Scalar = __nccwpck_require__(4882); +var toJS = __nccwpck_require__(2505); class YAMLSeq extends Collection.Collection { static get tagName() { @@ -17193,16 +17206,16 @@ exports.YAMLSeq = YAMLSeq; /***/ }), -/***/ 4095: +/***/ 664: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var log = __nccwpck_require__(2241); -var stringify = __nccwpck_require__(5858); -var identity = __nccwpck_require__(4464); -var Scalar = __nccwpck_require__(7920); -var toJS = __nccwpck_require__(6342); +var log = __nccwpck_require__(8770); +var stringify = __nccwpck_require__(3940); +var identity = __nccwpck_require__(7964); +var Scalar = __nccwpck_require__(4882); +var toJS = __nccwpck_require__(2505); const MERGE_KEY = '<<'; function addPairToJSMap(ctx, map, { key, value }) { @@ -17306,7 +17319,7 @@ exports.addPairToJSMap = addPairToJSMap; /***/ }), -/***/ 4464: +/***/ 7964: /***/ ((__unused_webpack_module, exports) => { @@ -17366,12 +17379,12 @@ exports.isSeq = isSeq; /***/ }), -/***/ 6342: +/***/ 2505: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); +var identity = __nccwpck_require__(7964); /** * Recursively convert any node or its contents to native JavaScript @@ -17412,15 +17425,15 @@ exports.toJS = toJS; /***/ }), -/***/ 9981: +/***/ 8666: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var resolveBlockScalar = __nccwpck_require__(9088); -var resolveFlowScalar = __nccwpck_require__(9005); -var errors = __nccwpck_require__(7222); -var stringifyString = __nccwpck_require__(2757); +var resolveBlockScalar = __nccwpck_require__(6594); +var resolveFlowScalar = __nccwpck_require__(5030); +var errors = __nccwpck_require__(3433); +var stringifyString = __nccwpck_require__(3715); function resolveAsScalar(token, strict = true, onError) { if (token) { @@ -17637,7 +17650,7 @@ exports.setScalarValue = setScalarValue; /***/ }), -/***/ 4615: +/***/ 5828: /***/ ((__unused_webpack_module, exports) => { @@ -17707,7 +17720,7 @@ exports.stringify = stringify; /***/ }), -/***/ 6257: +/***/ 1648: /***/ ((__unused_webpack_module, exports) => { @@ -17813,14 +17826,14 @@ exports.visit = visit; /***/ }), -/***/ 923: +/***/ 6757: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var cstScalar = __nccwpck_require__(9981); -var cstStringify = __nccwpck_require__(4615); -var cstVisit = __nccwpck_require__(6257); +var cstScalar = __nccwpck_require__(8666); +var cstStringify = __nccwpck_require__(5828); +var cstVisit = __nccwpck_require__(1648); /** The byte order mark */ const BOM = '\u{FEFF}'; @@ -17932,12 +17945,12 @@ exports.tokenType = tokenType; /***/ }), -/***/ 7641: +/***/ 4192: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var cst = __nccwpck_require__(923); +var cst = __nccwpck_require__(6757); /* START -> stream @@ -18642,7 +18655,7 @@ exports.Lexer = Lexer; /***/ }), -/***/ 3760: +/***/ 9555: /***/ ((__unused_webpack_module, exports) => { @@ -18690,13 +18703,13 @@ exports.LineCounter = LineCounter; /***/ }), -/***/ 1545: +/***/ 2729: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var cst = __nccwpck_require__(923); -var lexer = __nccwpck_require__(7641); +var cst = __nccwpck_require__(6757); +var lexer = __nccwpck_require__(4192); function includesToken(list, type) { for (let i = 0; i < list.length; ++i) @@ -19651,17 +19664,17 @@ exports.Parser = Parser; /***/ }), -/***/ 6704: +/***/ 6014: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var composer = __nccwpck_require__(9562); -var Document = __nccwpck_require__(8790); -var errors = __nccwpck_require__(7222); -var log = __nccwpck_require__(2241); -var lineCounter = __nccwpck_require__(3760); -var parser = __nccwpck_require__(1545); +var composer = __nccwpck_require__(6343); +var Document = __nccwpck_require__(1726); +var errors = __nccwpck_require__(3433); +var log = __nccwpck_require__(8770); +var lineCounter = __nccwpck_require__(9555); +var parser = __nccwpck_require__(2729); function parseOptions(options) { const prettyErrors = options.prettyErrors !== false; @@ -19762,16 +19775,16 @@ exports.stringify = stringify; /***/ }), -/***/ 4023: +/***/ 8596: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var map = __nccwpck_require__(2138); -var seq = __nccwpck_require__(9192); -var string = __nccwpck_require__(3797); -var tags = __nccwpck_require__(4728); +var identity = __nccwpck_require__(7964); +var map = __nccwpck_require__(934); +var seq = __nccwpck_require__(6974); +var string = __nccwpck_require__(2779); +var tags = __nccwpck_require__(4423); const sortMapEntriesByKey = (a, b) => a.key < b.key ? -1 : a.key > b.key ? 1 : 0; class Schema { @@ -19809,13 +19822,13 @@ exports.Schema = Schema; /***/ }), -/***/ 2138: +/***/ 934: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var YAMLMap = __nccwpck_require__(500); +var identity = __nccwpck_require__(7964); +var YAMLMap = __nccwpck_require__(6003); const map = { collection: 'map', @@ -19835,12 +19848,12 @@ exports.map = map; /***/ }), -/***/ 3324: +/***/ 6278: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); +var Scalar = __nccwpck_require__(4882); const nullTag = { identify: value => value == null, @@ -19859,13 +19872,13 @@ exports.nullTag = nullTag; /***/ }), -/***/ 9192: +/***/ 6974: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var YAMLSeq = __nccwpck_require__(5257); +var identity = __nccwpck_require__(7964); +var YAMLSeq = __nccwpck_require__(2282); const seq = { collection: 'seq', @@ -19885,12 +19898,12 @@ exports.seq = seq; /***/ }), -/***/ 3797: +/***/ 2779: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var stringifyString = __nccwpck_require__(2757); +var stringifyString = __nccwpck_require__(3715); const string = { identify: value => typeof value === 'string', @@ -19908,12 +19921,12 @@ exports.string = string; /***/ }), -/***/ 105: +/***/ 1020: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); +var Scalar = __nccwpck_require__(4882); const boolTag = { identify: value => typeof value === 'boolean', @@ -19936,13 +19949,13 @@ exports.boolTag = boolTag; /***/ }), -/***/ 5144: +/***/ 5396: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); -var stringifyNumber = __nccwpck_require__(8382); +var Scalar = __nccwpck_require__(4882); +var stringifyNumber = __nccwpck_require__(4938); const floatNaN = { identify: value => typeof value === 'number', @@ -19990,12 +20003,12 @@ exports.floatNaN = floatNaN; /***/ }), -/***/ 4915: +/***/ 4086: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var stringifyNumber = __nccwpck_require__(8382); +var stringifyNumber = __nccwpck_require__(4938); const intIdentify = (value) => typeof value === 'bigint' || Number.isInteger(value); const intResolve = (str, offset, radix, { intAsBigInt }) => (intAsBigInt ? BigInt(str) : parseInt(str.substring(offset), radix)); @@ -20039,18 +20052,18 @@ exports.intOct = intOct; /***/ }), -/***/ 68: +/***/ 5707: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var map = __nccwpck_require__(2138); -var _null = __nccwpck_require__(3324); -var seq = __nccwpck_require__(9192); -var string = __nccwpck_require__(3797); -var bool = __nccwpck_require__(105); -var float = __nccwpck_require__(5144); -var int = __nccwpck_require__(4915); +var map = __nccwpck_require__(934); +var _null = __nccwpck_require__(6278); +var seq = __nccwpck_require__(6974); +var string = __nccwpck_require__(2779); +var bool = __nccwpck_require__(1020); +var float = __nccwpck_require__(5396); +var int = __nccwpck_require__(4086); const schema = [ map.map, @@ -20071,14 +20084,14 @@ exports.schema = schema; /***/ }), -/***/ 5814: +/***/ 4910: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); -var map = __nccwpck_require__(2138); -var seq = __nccwpck_require__(9192); +var Scalar = __nccwpck_require__(4882); +var map = __nccwpck_require__(934); +var seq = __nccwpck_require__(6974); function intIdentify(value) { return typeof value === 'bigint' || Number.isInteger(value); @@ -20142,26 +20155,26 @@ exports.schema = schema; /***/ }), -/***/ 4728: +/***/ 4423: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var map = __nccwpck_require__(2138); -var _null = __nccwpck_require__(3324); -var seq = __nccwpck_require__(9192); -var string = __nccwpck_require__(3797); -var bool = __nccwpck_require__(105); -var float = __nccwpck_require__(5144); -var int = __nccwpck_require__(4915); -var schema = __nccwpck_require__(68); -var schema$1 = __nccwpck_require__(5814); -var binary = __nccwpck_require__(4653); -var omap = __nccwpck_require__(183); -var pairs = __nccwpck_require__(2805); -var schema$2 = __nccwpck_require__(1142); -var set = __nccwpck_require__(1555); -var timestamp = __nccwpck_require__(8513); +var map = __nccwpck_require__(934); +var _null = __nccwpck_require__(6278); +var seq = __nccwpck_require__(6974); +var string = __nccwpck_require__(2779); +var bool = __nccwpck_require__(1020); +var float = __nccwpck_require__(5396); +var int = __nccwpck_require__(4086); +var schema = __nccwpck_require__(5707); +var schema$1 = __nccwpck_require__(4910); +var binary = __nccwpck_require__(1614); +var omap = __nccwpck_require__(660); +var pairs = __nccwpck_require__(849); +var schema$2 = __nccwpck_require__(8687); +var set = __nccwpck_require__(830); +var timestamp = __nccwpck_require__(957); const schemas = new Map([ ['core', schema.schema], @@ -20235,16 +20248,16 @@ exports.getTags = getTags; /***/ }), -/***/ 4653: +/***/ 1614: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); -var stringifyString = __nccwpck_require__(2757); +var Scalar = __nccwpck_require__(4882); +var stringifyString = __nccwpck_require__(3715); const binary = { - identify: value => value instanceof Uint8Array, + identify: value => value instanceof Uint8Array, // Buffer inherits from Uint8Array default: false, tag: 'tag:yaml.org,2002:binary', /** @@ -20310,12 +20323,12 @@ exports.binary = binary; /***/ }), -/***/ 9973: +/***/ 8665: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); +var Scalar = __nccwpck_require__(4882); function boolStringify({ value, source }, ctx) { const boolObj = value ? trueTag : falseTag; @@ -20346,13 +20359,13 @@ exports.trueTag = trueTag; /***/ }), -/***/ 9016: +/***/ 8820: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); -var stringifyNumber = __nccwpck_require__(8382); +var Scalar = __nccwpck_require__(4882); +var stringifyNumber = __nccwpck_require__(4938); const floatNaN = { identify: value => typeof value === 'number', @@ -20403,12 +20416,12 @@ exports.floatNaN = floatNaN; /***/ }), -/***/ 5123: +/***/ 3932: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var stringifyNumber = __nccwpck_require__(8382); +var stringifyNumber = __nccwpck_require__(4938); const intIdentify = (value) => typeof value === 'bigint' || Number.isInteger(value); function intResolve(str, offset, radix, { intAsBigInt }) { @@ -20486,16 +20499,16 @@ exports.intOct = intOct; /***/ }), -/***/ 183: +/***/ 660: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var toJS = __nccwpck_require__(6342); -var YAMLMap = __nccwpck_require__(500); -var YAMLSeq = __nccwpck_require__(5257); -var pairs = __nccwpck_require__(2805); +var identity = __nccwpck_require__(7964); +var toJS = __nccwpck_require__(2505); +var YAMLMap = __nccwpck_require__(6003); +var YAMLSeq = __nccwpck_require__(2282); +var pairs = __nccwpck_require__(849); class YAMLOMap extends YAMLSeq.YAMLSeq { constructor() { @@ -20570,15 +20583,15 @@ exports.omap = omap; /***/ }), -/***/ 2805: +/***/ 849: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var Pair = __nccwpck_require__(5987); -var Scalar = __nccwpck_require__(7920); -var YAMLSeq = __nccwpck_require__(5257); +var identity = __nccwpck_require__(7964); +var Pair = __nccwpck_require__(6085); +var Scalar = __nccwpck_require__(4882); +var YAMLSeq = __nccwpck_require__(2282); function resolvePairs(seq, onError) { if (identity.isSeq(seq)) { @@ -20659,23 +20672,23 @@ exports.resolvePairs = resolvePairs; /***/ }), -/***/ 1142: +/***/ 8687: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var map = __nccwpck_require__(2138); -var _null = __nccwpck_require__(3324); -var seq = __nccwpck_require__(9192); -var string = __nccwpck_require__(3797); -var binary = __nccwpck_require__(4653); -var bool = __nccwpck_require__(9973); -var float = __nccwpck_require__(9016); -var int = __nccwpck_require__(5123); -var omap = __nccwpck_require__(183); -var pairs = __nccwpck_require__(2805); -var set = __nccwpck_require__(1555); -var timestamp = __nccwpck_require__(8513); +var map = __nccwpck_require__(934); +var _null = __nccwpck_require__(6278); +var seq = __nccwpck_require__(6974); +var string = __nccwpck_require__(2779); +var binary = __nccwpck_require__(1614); +var bool = __nccwpck_require__(8665); +var float = __nccwpck_require__(8820); +var int = __nccwpck_require__(3932); +var omap = __nccwpck_require__(660); +var pairs = __nccwpck_require__(849); +var set = __nccwpck_require__(830); +var timestamp = __nccwpck_require__(957); const schema = [ map.map, @@ -20705,14 +20718,14 @@ exports.schema = schema; /***/ }), -/***/ 1555: +/***/ 830: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var Pair = __nccwpck_require__(5987); -var YAMLMap = __nccwpck_require__(500); +var identity = __nccwpck_require__(7964); +var Pair = __nccwpck_require__(6085); +var YAMLMap = __nccwpck_require__(6003); class YAMLSet extends YAMLMap.YAMLMap { constructor(schema) { @@ -20808,12 +20821,12 @@ exports.set = set; /***/ }), -/***/ 8513: +/***/ 957: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var stringifyNumber = __nccwpck_require__(8382); +var stringifyNumber = __nccwpck_require__(4938); /** Internal types handle bigint as number, because TS can't figure it out. */ function parseSexagesimal(str, asBigInt) { @@ -20920,7 +20933,7 @@ exports.timestamp = timestamp; /***/ }), -/***/ 9585: +/***/ 4037: /***/ ((__unused_webpack_module, exports) => { @@ -21067,15 +21080,15 @@ exports.foldFlowLines = foldFlowLines; /***/ }), -/***/ 5858: +/***/ 3940: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var anchors = __nccwpck_require__(3242); -var identity = __nccwpck_require__(4464); -var stringifyComment = __nccwpck_require__(9685); -var stringifyString = __nccwpck_require__(2757); +var anchors = __nccwpck_require__(5170); +var identity = __nccwpck_require__(7964); +var stringifyComment = __nccwpck_require__(283); +var stringifyString = __nccwpck_require__(3715); function createStringifyContext(doc, options) { const opt = Object.assign({ @@ -21201,15 +21214,14 @@ exports.stringify = stringify; /***/ }), -/***/ 9036: +/***/ 6149: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Collection = __nccwpck_require__(1471); -var identity = __nccwpck_require__(4464); -var stringify = __nccwpck_require__(5858); -var stringifyComment = __nccwpck_require__(9685); +var identity = __nccwpck_require__(7964); +var stringify = __nccwpck_require__(3940); +var stringifyComment = __nccwpck_require__(283); function stringifyCollection(collection, ctx, options) { const flow = ctx.inFlow ?? collection.flow; @@ -21328,7 +21340,7 @@ function stringifyFlowCollection({ comment, items }, ctx, { flowChars, itemInden else { if (!reqNewline) { const len = lines.reduce((sum, line) => sum + line.length + 2, 2); - reqNewline = len > Collection.Collection.maxFlowStringSingleLineLength; + reqNewline = ctx.options.lineWidth > 0 && len > ctx.options.lineWidth; } if (reqNewline) { str = start; @@ -21361,7 +21373,7 @@ exports.stringifyCollection = stringifyCollection; /***/ }), -/***/ 9685: +/***/ 283: /***/ ((__unused_webpack_module, exports) => { @@ -21392,14 +21404,14 @@ exports.stringifyComment = stringifyComment; /***/ }), -/***/ 8782: +/***/ 7993: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var stringify = __nccwpck_require__(5858); -var stringifyComment = __nccwpck_require__(9685); +var identity = __nccwpck_require__(7964); +var stringify = __nccwpck_require__(3940); +var stringifyComment = __nccwpck_require__(283); function stringifyDocument(doc, options) { const lines = []; @@ -21486,7 +21498,7 @@ exports.stringifyDocument = stringifyDocument; /***/ }), -/***/ 8382: +/***/ 4938: /***/ ((__unused_webpack_module, exports) => { @@ -21519,15 +21531,15 @@ exports.stringifyNumber = stringifyNumber; /***/ }), -/***/ 5412: +/***/ 1128: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); -var Scalar = __nccwpck_require__(7920); -var stringify = __nccwpck_require__(5858); -var stringifyComment = __nccwpck_require__(9685); +var identity = __nccwpck_require__(7964); +var Scalar = __nccwpck_require__(4882); +var stringify = __nccwpck_require__(3940); +var stringifyComment = __nccwpck_require__(283); function stringifyPair({ key, value }, ctx, onComment, onChompKeep) { const { allNullValues, doc, indent, indentStep, options: { commentString, indentSeq, simpleKeys } } = ctx; @@ -21678,13 +21690,13 @@ exports.stringifyPair = stringifyPair; /***/ }), -/***/ 2757: +/***/ 3715: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var Scalar = __nccwpck_require__(7920); -var foldFlowLines = __nccwpck_require__(9585); +var Scalar = __nccwpck_require__(4882); +var foldFlowLines = __nccwpck_require__(4037); const getFoldOptions = (ctx, isBlock) => ({ indentAtStart: isBlock ? ctx.indent.length : ctx.indentAtStart, @@ -22015,12 +22027,12 @@ exports.stringifyString = stringifyString; /***/ }), -/***/ 6917: +/***/ 8206: /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { -var identity = __nccwpck_require__(4464); +var identity = __nccwpck_require__(7964); const BREAK = Symbol('break visit'); const SKIP = Symbol('skip children'); @@ -22312,14 +22324,52 @@ const external_node_path_namespaceObject = __WEBPACK_EXTERNAL_createRequire(impo var core = __nccwpck_require__(9093); // EXTERNAL MODULE: ./node_modules/.pnpm/@actions+tool-cache@2.0.1/node_modules/@actions/tool-cache/lib/tool-cache.js var tool_cache = __nccwpck_require__(5561); -// EXTERNAL MODULE: ./node_modules/.pnpm/@octokit+request-error@5.0.1/node_modules/@octokit/request-error/dist-node/index.js -var request_error_dist_node = __nccwpck_require__(4910); -// EXTERNAL MODULE: ./node_modules/.pnpm/semver@7.5.4/node_modules/semver/index.js -var semver = __nccwpck_require__(1026); -;// CONCATENATED MODULE: external "fs/promises" -const promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("fs/promises"); -// EXTERNAL MODULE: ./node_modules/.pnpm/yaml@2.3.4/node_modules/yaml/dist/index.js -var dist = __nccwpck_require__(2825); +;// CONCATENATED MODULE: ./node_modules/.pnpm/@octokit+request-error@6.0.1/node_modules/@octokit/request-error/dist-src/index.js +class RequestError extends Error { + name; + /** + * http status code + */ + status; + /** + * Request options that lead to the error. + */ + request; + /** + * Response object if a response was received + */ + response; + constructor(message, statusCode, options) { + super(message); + if (Error.captureStackTrace) { + Error.captureStackTrace(this, this.constructor); + } + this.name = "HttpError"; + this.status = statusCode; + if ("response" in options) { + this.response = options.response; + } + const requestCopy = Object.assign({}, options.request); + if (options.request.headers.authorization) { + requestCopy.headers = Object.assign({}, options.request.headers, { + authorization: options.request.headers.authorization.replace( + / .*$/, + " [REDACTED]" + ) + }); + } + requestCopy.url = requestCopy.url.replace(/\bclient_secret=\w+/g, "client_secret=[REDACTED]").replace(/\baccess_token=\w+/g, "access_token=[REDACTED]"); + this.request = requestCopy; + } +} + + +// EXTERNAL MODULE: ./node_modules/.pnpm/semver@7.6.0/node_modules/semver/index.js +var semver = __nccwpck_require__(117); +;// CONCATENATED MODULE: external "node:fs/promises" +const promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:fs/promises"); +// EXTERNAL MODULE: ./node_modules/.pnpm/yaml@2.4.0/node_modules/yaml/dist/index.js +var dist = __nccwpck_require__(7524); ;// CONCATENATED MODULE: ./build/index.mjs @@ -22356,7 +22406,7 @@ const download = async (options) => { const assetURL = await findAsset(releaseId, options); return await (0,tool_cache.downloadTool)(assetURL); } catch (error) { - if (error instanceof request_error_dist_node.RequestError) { + if (error instanceof RequestError) { const requestError = error; if (requestError.status === 403 && requestError.response?.headers["x-ratelimit-remaining"] === "0") { throw new Error(` @@ -22395,7 +22445,7 @@ const findRelease = async (options) => { tag: `cli/v${versionToDownload}` })).data.id; } catch (error) { - if (error instanceof request_error_dist_node.RequestError) { + if (error instanceof RequestError) { const requestError = error; if (requestError.status === 404) { throw new Error( @@ -22478,7 +22528,7 @@ const extractVersionFromPnpmLockFile = async (root) => { const lockfile = (0,dist/* parse */.Qc)( await (0,promises_namespaceObject.readFile)((0,external_node_path_namespaceObject.join)(root, "pnpm-lock.yaml"), "utf8") ); - return lockfile.dependencies?.["@biomejs/biome"]?.version; + return lockfile.devDependencies?.["@biomejs/biome"]?.version ?? lockfile.dependencies?.["@biomejs/biome"]?.version; } catch { return void 0; }