From 4cf7d2a6e36e9630546bec12b72f16f2ddb84480 Mon Sep 17 00:00:00 2001 From: JounQin Date: Fri, 8 Jul 2022 23:33:40 +0800 Subject: [PATCH] chore: bump @1stg/lib-config --- .changeset/config.json | 2 +- .github/workflows/ci.yml | 8 - LICENSE | 2 +- README.md | 18 +- package.json | 15 +- yarn.lock | 746 ++++++++++++++++++++------------------- 6 files changed, 409 insertions(+), 382 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 7cec9333f..d74bbaa9c 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,5 +1,5 @@ { - "$schema": "https://unpkg.com/@changesets/config@1.6.0/schema.json", + "$schema": "https://unpkg.com/@changesets/config/schema.json", "changelog": [ "@changesets/changelog-github", { diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a20682777..b2b0bfa7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,11 +45,3 @@ jobs: - name: Codecov uses: codecov/codecov-action@v3 - - - name: Codacy Coverage - if: matrix.os != 'windows-latest' - run: | - bash <(curl -Ls https://coverage.codacy.com/get.sh) - env: - CODACY_ACCOUNT_TOKEN: ${{ secrets.CODACY_ACCOUNT_TOKEN }} - CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }} diff --git a/LICENSE b/LICENSE index 8c3dc82df..b93398b94 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 RxTS +Copyright (c) 2021 UnTS Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index d14594148..17dcbb3e8 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # synckit -[![GitHub Actions](https://github.com/rx-ts/synckit/workflows/CI/badge.svg)](https://github.com/rx-ts/synckit/actions/workflows/ci.yml) -[![Codecov](https://img.shields.io/codecov/c/github/rx-ts/synckit.svg)](https://codecov.io/gh/rx-ts/synckit) -[![Codacy Grade](https://img.shields.io/codacy/grade/3eaf9a96ad12491493b712a6a99028c5)](https://www.codacy.com/gh/rx-ts/synckit) -[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Frx-ts%2Fsynckit%2Fmain%2Fpackage.json)](https://github.com/plantain-00/type-coverage) +[![GitHub Actions](https://github.com/un-ts/synckit/workflows/CI/badge.svg)](https://github.com/un-ts/synckit/actions/workflows/ci.yml) +[![Codecov](https://img.shields.io/codecov/c/github/un-ts/synckit.svg)](https://codecov.io/gh/un-ts/synckit) +[![Language grade: JavaScript](https://img.shields.io/lgtm/grade/javascript/g/un-ts/synckit.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/un-ts/synckit/context:javascript) +[![type-coverage](https://img.shields.io/badge/dynamic/json.svg?label=type-coverage&prefix=%E2%89%A5&suffix=%&query=$.typeCoverage.atLeast&uri=https%3A%2F%2Fraw.githubusercontent.com%2Fun-ts%2Fsynckit%2Fmain%2Fpackage.json)](https://github.com/plantain-00/type-coverage) [![npm](https://img.shields.io/npm/v/synckit.svg)](https://www.npmjs.com/package/synckit) -[![GitHub Release](https://img.shields.io/github/release/rx-ts/synckit)](https://github.com/rx-ts/synckit/releases) +[![GitHub Release](https://img.shields.io/github/release/un-ts/synckit)](https://github.com/un-ts/synckit/releases) [![Conventional Commits](https://img.shields.io/badge/conventional%20commits-1.0.0-yellow.svg)](https://conventionalcommits.org) [![Renovate enabled](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com) @@ -90,15 +90,15 @@ You can try it with running `yarn benchmark` by yourself. [Here](./benchmarks/be ## Sponsors -| 1stG | RxTS | UnTS | +| 1stG | unTS | UnTS | | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------- | -| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) | +| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![unTS Open Collective backers and sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) | ## Backers -| 1stG | RxTS | UnTS | +| 1stG | unTS | UnTS | | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------- | -| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers and sponsors](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) | +| [![1stG Open Collective backers and sponsors](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![unTS Open Collective backers and sponsors](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) | [![UnTS Open Collective backers and sponsors](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) | ## Changelog diff --git a/package.json b/package.json index cabab6b8f..0b91e957a 100644 --- a/package.json +++ b/package.json @@ -84,24 +84,25 @@ "typecov": "type-coverage" }, "dependencies": { - "@pkgr/utils": "^2.2.0", + "@pkgr/utils": "^2.3.0", "tslib": "^2.4.0" }, "devDependencies": { - "@1stg/lib-config": "^7.2.3", + "@1stg/lib-config": "^8.0.0", "@changesets/changelog-github": "^0.4.5", - "@changesets/cli": "^2.23.0", + "@changesets/cli": "^2.23.1", "@types/jest": "^28.1.4", - "@types/node": "^18.0.0", + "@types/node": "^18.0.3", "clean-publish": "^4.0.1", - "deasync": "^0.1.26", + "deasync": "^0.1.27", "patch-package": "^6.4.7", "sync-threads": "^1.0.1", "ts-expect": "^1.3.0", "ts-jest": "^28.0.5", - "ts-node": "^10.8.1", + "ts-node": "^10.8.2", "type-coverage": "^2.21.2", - "typescript": "^4.7.4" + "typescript": "^4.7.4", + "yarn-deduplicate": "^5.0.0" }, "resolutions": { "prettier": "^2.7.1", diff --git a/yarn.lock b/yarn.lock index 9f026136e..cd920cbd5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,10 +2,10 @@ # yarn lockfile v1 -"@1stg/babel-preset@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@1stg/babel-preset/-/babel-preset-3.1.2.tgz#fb1a7bb326e246123cbe5c929126d156d473f463" - integrity sha512-OyGJtz6mFvaluQF9qYW30CZgfkDZ/1NWJwj/299k4BCup6Pw50OCtPhgtmk/BuRmYlfY6BOMqCqSYo6ZGx2faA== +"@1stg/babel-preset@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@1stg/babel-preset/-/babel-preset-3.1.4.tgz#34697a7459b39246c8cbd711a88d3d3f970a354f" + integrity sha512-2fq/Ov//UUAOObhZmsDdbFkH/s4ihOczuk3F/GcDMa34w1wI+PTmLW7UEZXVq9AhY3tKJh4RFOcvBEpMq9ZAlQ== dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-class-properties" "^7.18.6" @@ -13,10 +13,10 @@ "@babel/preset-env" "^7.18.6" "@babel/preset-react" "^7.18.6" "@babel/preset-typescript" "^7.18.6" - "@pkgr/utils" "^2.2.0" + "@pkgr/utils" "^2.3.0" "@vue/babel-helper-vue-jsx-merge-props" "^1.2.1" "@vue/babel-plugin-jsx" "^1.1.1" - "@vue/babel-preset-jsx" "^1.2.4" + "@vue/babel-preset-jsx" "^1.3.0" babel-plugin-import "^1.13.5" babel-plugin-transform-async-to-promises "^0.8.18" babel-plugin-transform-react-remove-prop-types "^0.4.24" @@ -26,29 +26,29 @@ core-js "^3.23.3" fast-async "^7.0.6" -"@1stg/commitlint-config@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@1stg/commitlint-config/-/commitlint-config-3.1.2.tgz#24f3e5e8b76c140d134592e989290b36c2059bd3" - integrity sha512-+i32MEB6huNHUytgSWfih7UwIR/bVUJpilJEiLkz3YawonK4eSDPSO48h8FUQOxSvViINlPJVgZTHhuvhlD+ZQ== +"@1stg/commitlint-config@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@1stg/commitlint-config/-/commitlint-config-3.1.4.tgz#b13e269e10515aa7187b3cd7711b2410f6914851" + integrity sha512-nSrw3aAZJw7inH7UpsxiYM77+nsHEY2vzyHZIxIgz0DKXXx3Csxuk+mkXIAeJs9tCl9uG5Nz4U5IH0yRT5ifDg== dependencies: "@commitlint/config-conventional" "^17.0.3" "@commitlint/config-lerna-scopes" "^17.0.2" - "@pkgr/utils" "^2.2.0" + "@pkgr/utils" "^2.3.0" -"@1stg/common-config@^5.2.3": - version "5.2.3" - resolved "https://registry.yarnpkg.com/@1stg/common-config/-/common-config-5.2.3.tgz#fd735c72be6390c3d27f9dae3291a8bfa31e459a" - integrity sha512-G5/r8/sJM7X8cs/IickBNE5p9+woeTm2QhF69ib3cwVWftVKpzn0V8EZ0LlMsf8xke0sw0tXNxqnmyoFEu3zBw== - dependencies: - "@1stg/babel-preset" "^3.1.2" - "@1stg/commitlint-config" "^3.1.2" - "@1stg/eslint-config" "^5.2.3" - "@1stg/lint-staged" "^3.1.3" - "@1stg/markuplint-config" "^2.1.2" - "@1stg/prettier-config" "^3.4.2" - "@1stg/remark-config" "^4.0.2" - "@1stg/simple-git-hooks" "^0.1.4" - "@1stg/tsconfig" "^2.2.2" +"@1stg/common-config@^6.0.0": + version "6.0.0" + resolved "https://registry.yarnpkg.com/@1stg/common-config/-/common-config-6.0.0.tgz#62c56c398caa4594c67c0acd1600a017891effc3" + integrity sha512-QlqD1WhKpFa7EqxYkG4BIeRHWFFGyxmvXx7r6Sdfdp7LIhd4lwInScVpBTQ/g8wvsBOJyPct0YL8uxaDyj37Mw== + dependencies: + "@1stg/babel-preset" "^3.1.4" + "@1stg/commitlint-config" "^3.1.4" + "@1stg/eslint-config" "^5.3.1" + "@1stg/lint-staged" "^3.2.1" + "@1stg/markuplint-config" "^2.2.0" + "@1stg/prettier-config" "^3.6.0" + "@1stg/remark-config" "^4.0.3" + "@1stg/simple-git-hooks" "^0.2.1" + "@1stg/tsconfig" "^2.2.3" "@babel/core" "^7.18.6" "@commitlint/cli" "^17.0.3" eslint "^8.19.0" @@ -57,39 +57,44 @@ prettier "^2.7.1" simple-git-hooks "^2.8.0" tslib "^2.4.0" - yarn-deduplicate "^5.0.0" -"@1stg/eslint-config@^5.2.3": - version "5.2.3" - resolved "https://registry.yarnpkg.com/@1stg/eslint-config/-/eslint-config-5.2.3.tgz#9d7a2de4fb7c0484fdc5244f4ceb1ece798bc242" - integrity sha512-vw2JXTYKEoVLClU/C/fAVUnW12Nordsm3hjSQmOhIUsbBMaMbBaLkSfeRwDTq3LEWKKK0ssKxPWTH2nPMRnYtA== +"@1stg/config@^0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@1stg/config/-/config-0.1.0.tgz#2dd64124e9c210571e9c60e099ade63a3aed332c" + integrity sha512-UwHzoTX2vn0q8kyiVCWBIYfVUyaTKEs/3Y/egnOK4WoU1odgIuT2L6dre2svBswBPAW3p7d/7Vsb2upcXxis2w== + +"@1stg/eslint-config@^5.3.1": + version "5.3.1" + resolved "https://registry.yarnpkg.com/@1stg/eslint-config/-/eslint-config-5.3.1.tgz#3ab8cdf82b339b29efb3486b7ebffe221044b817" + integrity sha512-ybZ6xxPeTlnl+LnceJhHpPw9dj0qM6ETJgtOwLa5rGLNrzpwY5V/DMpgbyIQ92FaeUgQCHVSOpxIm8u/ZMwpvA== dependencies: + "@1stg/config" "^0.1.0" "@angular-eslint/eslint-plugin" "^14.0.0" "@angular-eslint/eslint-plugin-template" "^14.0.0" "@angular-eslint/template-parser" "^14.0.0" "@babel/eslint-parser" "^7.18.2" "@babel/eslint-plugin" "^7.17.7" - "@pkgr/utils" "^2.2.0" - "@typescript-eslint/eslint-plugin" "^5.30.3" - "@typescript-eslint/parser" "^5.30.3" + "@pkgr/utils" "^2.3.0" + "@typescript-eslint/eslint-plugin" "^5.30.5" + "@typescript-eslint/parser" "^5.30.5" angular-eslint-template-parser "^0.1.1" eslint-config-prettier "^8.5.0" eslint-config-standard "^17.0.0" eslint-config-standard-jsx "^11.0.0" eslint-config-standard-react "^11.0.1" eslint-formatter-friendly "^7.0.0" - eslint-import-resolver-typescript "^3.1.4" + eslint-import-resolver-typescript "^3.2.4" eslint-plugin-css "^0.6.0" eslint-plugin-es-x "^5.2.1" eslint-plugin-eslint-comments "^3.2.0" eslint-plugin-import "^2.26.0" eslint-plugin-jest "^26.5.3" eslint-plugin-jsdoc "^39.3.3" - eslint-plugin-json-schema-validator "^3.1.0" - eslint-plugin-jsonc "^2.3.0" - eslint-plugin-markup "^0.9.0" + eslint-plugin-json-schema-validator "^3.1.3" + eslint-plugin-jsonc "^2.3.1" + eslint-plugin-markup "^0.10.0" eslint-plugin-mdx "^2.0.1" - eslint-plugin-n "^15.2.3" + eslint-plugin-n "^15.2.4" eslint-plugin-prettier "^4.2.1" eslint-plugin-promise "^6.0.0" eslint-plugin-react "^7.30.1" @@ -98,59 +103,63 @@ eslint-plugin-simple-import-sort "^7.0.0" eslint-plugin-sonar "^0.8.0" eslint-plugin-sonarjs "^0.13.0" - eslint-plugin-svelte "^2.0.0" + eslint-plugin-svelte "^2.2.0" eslint-plugin-toml "^0.3.1" - eslint-plugin-unicorn "^43.0.0" - eslint-plugin-vue "^9.1.1" + eslint-plugin-unicorn "^43.0.1" + eslint-plugin-vue "^9.2.0" eslint-plugin-yml "^1.0.0" -"@1stg/lib-config@^7.2.3": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@1stg/lib-config/-/lib-config-7.2.3.tgz#f6ffadfaeaaa5b5b99a7845edb992197189cb56d" - integrity sha512-eWgcHfkYNtahuM4LM7sUJBPyNKcf57f9AxEMlxiUdKCjlq7edGflgsKN1YHBVa/7s84bdV9JOZG1jRxaCUwNRA== +"@1stg/lib-config@^8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@1stg/lib-config/-/lib-config-8.0.0.tgz#334d99ec7042fd2167f99a2ca3c4a80b7fb5496e" + integrity sha512-3xT2f9h72YKDE4anQiA925ZCzbYMvnGcaDcVOoC/56ey5rqQ5G4wFitGivSfixQ9kVdxVLL4oBHbiYxztyVHxA== dependencies: - "@1stg/common-config" "^5.2.3" - "@pkgr/rollup" "^3.1.2" + "@1stg/common-config" "^6.0.0" + "@pkgr/rollup" "^3.1.4" jest "^28.1.2" -"@1stg/lint-staged@^3.1.3": - version "3.1.3" - resolved "https://registry.yarnpkg.com/@1stg/lint-staged/-/lint-staged-3.1.3.tgz#2295bdf750015208842bff04115605fa61bab0c4" - integrity sha512-4iCUv6l5xJTWBrnJgb+N79XPCwUOT6yIO+sSlu1D1l0TuqiPAnu+I5Mj0ButNXZJ7n3QWVx8HeCDPFLs4XVU1g== +"@1stg/lint-staged@^3.2.1": + version "3.2.1" + resolved "https://registry.yarnpkg.com/@1stg/lint-staged/-/lint-staged-3.2.1.tgz#862ce8e7d504a49d9212eda930556ef43d2bb9e1" + integrity sha512-aKXAxpUCY1TarkVamkPBDSk2en0X16z9tM/cXDZGt9qHqn+14O1c1B9J5ELNz4UBC2IDyotIB7H8pvb8Baylhw== dependencies: - "@1stg/prettier-config" "^3.4.2" - "@1stg/tsconfig" "^2.2.2" - "@pkgr/utils" "^2.2.0" + "@1stg/config" "^0.1.0" + "@1stg/prettier-config" "^3.6.0" + "@1stg/tsconfig" "^2.2.3" + "@pkgr/utils" "^2.3.0" cross-env "^7.0.3" prettier "^2.7.1" -"@1stg/markuplint-config@^2.1.2": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@1stg/markuplint-config/-/markuplint-config-2.1.2.tgz#e6d86d4ba8970facf4b866ff71d002835f806af5" - integrity sha512-0JC9UTOkAXzpdEIvS8Zas//hM5lUSQhXoizrFFLFG5Z4AG4e0hyQSo5cteT76sl/cEFoJc3hrJw1KhBMTty+mQ== +"@1stg/markuplint-config@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@1stg/markuplint-config/-/markuplint-config-2.2.0.tgz#88784720890c31203f55f3aef0f30694f54c0ad6" + integrity sha512-SFIB3oa5RAZ7Tfql/O+TpQKqC6sO4BEy1EzU5ZOaUzJz9U192gnyDNEu0DPU9Oc4T4kTulSqNMAK3hyfdsDTJg== dependencies: - "@markuplint/vue-parser" "^2.3.1" - "@markuplint/vue-spec" "^2.1.0" - markuplint-angular-parser "^1.1.2" + "@markuplint/svelte-parser" "^2.2.3" + "@markuplint/vue-parser" "^2.3.2" + "@markuplint/vue-spec" "^2.1.1" + markuplint-angular-parser "^1.1.3" -"@1stg/prettier-config@^3.4.2": - version "3.4.2" - resolved "https://registry.yarnpkg.com/@1stg/prettier-config/-/prettier-config-3.4.2.tgz#a4ec004cd8d10b07636c5644f0f841ac45a3a9b1" - integrity sha512-1EqirgrHhQ+OU/iw2hNz2CJyHcvUCngyvgtgehwDVIlb6oafbkMzm05NzCf+dy2TSBj7cARK+B4sCR5ixzCNXw== +"@1stg/prettier-config@^3.6.0": + version "3.6.0" + resolved "https://registry.yarnpkg.com/@1stg/prettier-config/-/prettier-config-3.6.0.tgz#361f2530a7491d006f4e2722b3aad254cf1f66fd" + integrity sha512-aZD7WO6f1o97gZ6JpWxtluUS+cIj2H24ynFPREHlyNMuc9d5B4Jjt+w8CHnh39H7zOZaS26aQrJdhuKps9T7WQ== dependencies: + "@1stg/config" "^0.1.0" "@prettier/plugin-pug" "^2.1.1" "@prettier/plugin-ruby" "^3.1.2" "@prettier/plugin-xml" "^2.2.0" - prettier-plugin-pkg "^0.15.0" - prettier-plugin-sh "^0.12.5" + prettier-plugin-ini "^1.0.0" + prettier-plugin-pkg "^0.16.0" + prettier-plugin-sh "^0.12.6" prettier-plugin-stylus "^0.0.1-beta.3" prettier-plugin-svelte "^2.7.0" prettier-plugin-toml "^0.3.1" -"@1stg/remark-config@^4.0.2": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@1stg/remark-config/-/remark-config-4.0.2.tgz#95f9bbf5e0081e2f31e998cb19430c4b0da2c8ed" - integrity sha512-Yk+hdLzKGhnKy3o35vYFbL6Zu+ZUvGgG6oHGT6mUwD4NPqKd0bZfdBJb6t76DopjmFk86BzR9Asw+hNsAMmBvg== +"@1stg/remark-config@^4.0.3": + version "4.0.3" + resolved "https://registry.yarnpkg.com/@1stg/remark-config/-/remark-config-4.0.3.tgz#c17956edb0acaa94ed52751751d1a900fc9a9bc3" + integrity sha512-gojIvUH/kybjHdOVSdWmYYnUuhJr4XVXzzGoJsgLQHEInRsGpVkj5+/T5iKsAvXcPzdMu0ITsgPR9Ox22z2Wdg== dependencies: remark-frontmatter "^4.0.1" remark-gfm "^3.0.1" @@ -163,15 +172,17 @@ remark-preset-prettier "^1.0.1" remark-validate-links "^12.0.0" -"@1stg/simple-git-hooks@^0.1.4": - version "0.1.4" - resolved "https://registry.yarnpkg.com/@1stg/simple-git-hooks/-/simple-git-hooks-0.1.4.tgz#94a80d8246c446c9681288f1fc9b9b35fc0baba9" - integrity sha512-qLPZ5OuuaUd3Z84AxBgqVOcRnksMC/aBK5HK1gFW709z6yZNUoW55OL+YlWAuOdfFXFqJypDbudNlIIBDsgiZw== +"@1stg/simple-git-hooks@^0.2.1": + version "0.2.1" + resolved "https://registry.yarnpkg.com/@1stg/simple-git-hooks/-/simple-git-hooks-0.2.1.tgz#6c9d1ead4f9d29d4fc5a597d6041717c61a051dc" + integrity sha512-EEizLAfDPb+A2cjaojrGGYbtWaBYsqRxcH/X1nAiwbMaydKdlSXeqP55o8kyNAnyNlocgLn2izsVqgb9zXDAQA== + dependencies: + "@pkgr/utils" "^2.3.0" -"@1stg/tsconfig@^2.2.2": - version "2.2.2" - resolved "https://registry.yarnpkg.com/@1stg/tsconfig/-/tsconfig-2.2.2.tgz#7fb403562b112d74d5c7dca8ff56a8f28f6262b5" - integrity sha512-gIx7pB0HvbISmZ8AdlYwLdJlZW99B9P9JaCsGtzt1dzHfhjUN6yuegND/y1+QMZzgCN1+kgTBSpzsACecolsTQ== +"@1stg/tsconfig@^2.2.3": + version "2.2.3" + resolved "https://registry.yarnpkg.com/@1stg/tsconfig/-/tsconfig-2.2.3.tgz#ec88f8d96225c19c2706e8c69b6f52daed5ba481" + integrity sha512-nyFRZsB4Adf0OaAnzopXgKxSNfx7VomECiSCFXCPZ2Fe7/m39/PS+vQXTzO4VfiyJqLsuNWiR9mMMubTfXe8lQ== "@ampproject/remapping@^2.1.0": version "2.2.0" @@ -239,7 +250,7 @@ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.18.6.tgz#8b37d24e88e8e21c499d4328db80577d8882fa53" integrity sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ== -"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.18.5", "@babel/core@^7.18.6": +"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.18.6.tgz#54a107a3c298aee3fe5e1947a6464b9b6faca03d" integrity sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ== @@ -549,7 +560,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-proposal-decorators@^7.18.2", "@babel/plugin-proposal-decorators@^7.18.6": +"@babel/plugin-proposal-decorators@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.6.tgz#68e9fd0f022b944f84a8824bb28bfaee724d2595" integrity sha512-gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg== @@ -1211,7 +1222,7 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/preset-env@^7.18.2", "@babel/preset-env@^7.18.6": +"@babel/preset-env@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.18.6.tgz#953422e98a5f66bc56cd0b9074eaea127ec86ace" integrity sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw== @@ -1315,7 +1326,7 @@ "@babel/plugin-transform-react-jsx-development" "^7.18.6" "@babel/plugin-transform-react-pure-annotations" "^7.18.6" -"@babel/preset-typescript@^7.17.12", "@babel/preset-typescript@^7.18.6": +"@babel/preset-typescript@^7.18.6": version "7.18.6" resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz#ce64be3e63eddc44240c6358daefac17b3186399" integrity sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ== @@ -1374,13 +1385,13 @@ resolved "https://registry.yarnpkg.com/@bloomberg/record-tuple-polyfill/-/record-tuple-polyfill-0.0.3.tgz#0b03d18b88a30894caab14abd669b1cbbf47b843" integrity sha512-sBnCqW0nqofE47mxFnw+lvx6kzsQstwaQMVkh66qm/A6IlsnH7WsyGuVXTou8RF2wL4W7ybOoHPvP2WgIo6rhQ== -"@changesets/apply-release-plan@^6.0.0": - version "6.0.0" - resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.0.0.tgz#6c663ff99d919bba3902343d76c35cbbbb046520" - integrity sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w== +"@changesets/apply-release-plan@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@changesets/apply-release-plan/-/apply-release-plan-6.0.1.tgz#7d7b13d4dc1f03e287bc563e029ed0bf955332a9" + integrity sha512-KGtai19+Uo7k8uco9m+hIPGoet9E6eZq15RIeHoivvgwwI66AC6ievbUO5h0NqGlZjBWnYJQNkuT66kvBYzxsA== dependencies: "@babel/runtime" "^7.10.4" - "@changesets/config" "^2.0.0" + "@changesets/config" "^2.0.1" "@changesets/get-version-range-type" "^0.3.2" "@changesets/git" "^1.3.2" "@changesets/types" "^5.0.0" @@ -1421,19 +1432,19 @@ "@changesets/types" "^5.0.0" dotenv "^8.1.0" -"@changesets/cli@^2.23.0": - version "2.23.0" - resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.23.0.tgz#e325b2d1b0484188671f684773b8cd5d42d068f1" - integrity sha512-Gi3tMi0Vr6eNd8GX6q73tbOm9XOzGfuLEm4PYVeWG2neg5DlRGNOjYwrFULJ/An3N9MHtHn4r5h1Qvnju9Ijug== +"@changesets/cli@^2.23.1": + version "2.23.1" + resolved "https://registry.yarnpkg.com/@changesets/cli/-/cli-2.23.1.tgz#3ab7f26db865ed0ca3185ec6919e1a62e9c7fcbd" + integrity sha512-yXQ29Iw/26yq1oJpOCa7BJDeUvuurZmREmCX9p9m5RxlKNDnROJBylQDCVfqQdZbeV2jfvd3XRKvci80SvGssg== dependencies: "@babel/runtime" "^7.10.4" - "@changesets/apply-release-plan" "^6.0.0" + "@changesets/apply-release-plan" "^6.0.1" "@changesets/assemble-release-plan" "^5.1.3" "@changesets/changelog-git" "^0.1.11" - "@changesets/config" "^2.0.0" + "@changesets/config" "^2.0.1" "@changesets/errors" "^0.1.4" "@changesets/get-dependents-graph" "^1.3.2" - "@changesets/get-release-plan" "^3.0.9" + "@changesets/get-release-plan" "^3.0.10" "@changesets/git" "^1.3.2" "@changesets/logger" "^0.0.5" "@changesets/pre" "^1.0.11" @@ -1460,10 +1471,10 @@ term-size "^2.1.0" tty-table "^4.1.5" -"@changesets/config@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.0.0.tgz#1770fdfeba2155cf07154c37e96b55cbd27969f0" - integrity sha512-r5bIFY6CN3K6SQ+HZbjyE3HXrBIopONR47mmX7zUbORlybQXtympq9rVAOzc0Oflbap8QeIexc+hikfZoREXDg== +"@changesets/config@^2.0.1": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@changesets/config/-/config-2.0.1.tgz#9c71f01032f8b12237a18edeac2a39e6142e8a50" + integrity sha512-rJaQWqsjM54T7bDiCoMDcgOuY2HzyovvRs68C//C+tYgbHyjs00JcNVcScjlV47hATrNG1AI8qTD7V9bcO/1cg== dependencies: "@changesets/errors" "^0.1.4" "@changesets/get-dependents-graph" "^1.3.2" @@ -1499,14 +1510,14 @@ dataloader "^1.4.0" node-fetch "^2.5.0" -"@changesets/get-release-plan@^3.0.9": - version "3.0.9" - resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.9.tgz#d445660f3679cb65e05e02adfbca037a25b45943" - integrity sha512-5C1r4DcOjVxcCvPmXpymeyT6mdSTLCNiB2L+5uf19BRkDKndJdIQorH5Fe2XBR2nHUcZQFT+2TXDzCepat969w== +"@changesets/get-release-plan@^3.0.10": + version "3.0.10" + resolved "https://registry.yarnpkg.com/@changesets/get-release-plan/-/get-release-plan-3.0.10.tgz#badbea8c113c976486d2eebaa66126a7ddd7ff0c" + integrity sha512-QeKHeo+mX1baRy3OIHQePMPebPFymq/ZxS6Bk3Y3FXiU+pXVnjrfqARj1E4xQT5c+48u6ISqJ8tW5f3EZ1/hng== dependencies: "@babel/runtime" "^7.10.4" "@changesets/assemble-release-plan" "^5.1.3" - "@changesets/config" "^2.0.0" + "@changesets/config" "^2.0.1" "@changesets/pre" "^1.0.11" "@changesets/read" "^0.5.5" "@changesets/types" "^5.0.0" @@ -2085,49 +2096,49 @@ globby "^11.0.0" read-yaml-file "^1.1.0" -"@markuplint/create-rule-helper@2.3.2": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@markuplint/create-rule-helper/-/create-rule-helper-2.3.2.tgz#78fcba5aa62a4f9bdd1d796a4930bf12657638ab" - integrity sha512-SOt9tFkuNCiRT7fvl13c9ZhpwcLaM9h9WufVs7iZ78ip/ZBBa6hpHlhBpzOZS1ejDOs2KbObKxJzfU7LJjdIjw== +"@markuplint/create-rule-helper@2.3.3": + version "2.3.3" + resolved "https://registry.yarnpkg.com/@markuplint/create-rule-helper/-/create-rule-helper-2.3.3.tgz#9385e63f707a9ddc1aacf5d0c4b9c94f30bef070" + integrity sha512-pues6IU4Zw3ieoKwwtwq+cPcDYu7UHAGz+FOgcrwfy390GnCMuP+GuqwQHlWm+KwhDHgGl3k8H/ed+BitrLhoA== dependencies: - "@markuplint/ml-core" "2.3.2" + "@markuplint/ml-core" "2.3.3" glob "^7.2.0" mustache "^4.2.0" prettier "^2.6.2" tslib "^2.3.1" typescript "^4.6.3" -"@markuplint/file-resolver@2.5.2": - version "2.5.2" - resolved "https://registry.yarnpkg.com/@markuplint/file-resolver/-/file-resolver-2.5.2.tgz#170b3a21d03f432238059d0c435fa5abd9b78e72" - integrity sha512-6d/7yW+jsaEsD2nsRG45Pl3m+zJQJYP4ew5jBeSzgvdeMGp3VmphhIDbO6KzTL8fSlDpyUjyxaDsz7VK30KLdg== +"@markuplint/file-resolver@2.5.3": + version "2.5.3" + resolved "https://registry.yarnpkg.com/@markuplint/file-resolver/-/file-resolver-2.5.3.tgz#f648b649fc9cedc60c259f81879bfd64e343070a" + integrity sha512-OahuiL3O2+hduiMM882hs4K1RCyautFb8KG0A9EzlZPiaUrV2rRyGCS/RQUVhWOYPquOsj+6B/Sc2hq/ExcIfg== dependencies: "@markuplint/ml-ast" "2.0.1-dev.20220307.0" "@markuplint/ml-config" "2.1.0" - "@markuplint/ml-core" "2.3.2" - "@markuplint/ml-spec" "2.1.0" + "@markuplint/ml-core" "2.3.3" + "@markuplint/ml-spec" "2.1.1" cosmiconfig "^7.0.1" glob "^7.2.0" jsonc "^2.0.0" minimatch "^5.0.1" tslib "^2.3.1" -"@markuplint/html-parser@2.2.1", "@markuplint/html-parser@^2.2.1": - version "2.2.1" - resolved "https://registry.yarnpkg.com/@markuplint/html-parser/-/html-parser-2.2.1.tgz#1bfc674670e3a1f4cd6c0008f9451fe9d1972d3a" - integrity sha512-tpvlczO34z5TH3RcNqkUUDQLLnRmA7YDHfakK6qi4LfAWovmMwIN1oJypZD+4x1wpqk9kFQa8GWd3890K1+Hpg== +"@markuplint/html-parser@2.2.2", "@markuplint/html-parser@^2.2.2": + version "2.2.2" + resolved "https://registry.yarnpkg.com/@markuplint/html-parser/-/html-parser-2.2.2.tgz#e24e4088efa188ea6ac2373744702f79fc9b0516" + integrity sha512-+QKMdQBFD3eUhYtdYzoSJMRnWNETMewWf1RyitfR1xgx7wEVnSW3VEem5ZIlr7FlSzYsKDl1rrhJZn5Qi/fw1Q== dependencies: "@markuplint/ml-ast" "2.0.1-dev.20220307.0" - "@markuplint/parser-utils" "2.2.0" + "@markuplint/parser-utils" "2.2.1" parse5 "^6.0.1" tslib "^2.3.1" -"@markuplint/html-spec@2.7.0": - version "2.7.0" - resolved "https://registry.yarnpkg.com/@markuplint/html-spec/-/html-spec-2.7.0.tgz#a2e4eb2756540eae95026c04cb10addba17211b9" - integrity sha512-BLameDIypOZnkPRKAgNQIyEa+jgPoH3NJx872au+s4m6+bx3Csp9FJmMQrAAtpfbn242q+ZoVnAsu8iQhSF2VA== +"@markuplint/html-spec@2.8.0": + version "2.8.0" + resolved "https://registry.yarnpkg.com/@markuplint/html-spec/-/html-spec-2.8.0.tgz#0049113cb786b4b32e4062e4c57661633739ad1e" + integrity sha512-LJYeiLDdcme4euZnMThWo75hawPHiTmkd1kJkDAw4XuLUPu/s4BYmvaSH0sOpuqF0o2rBQszQa7dK5FauOWhGA== dependencies: - "@markuplint/ml-spec" "2.1.0" + "@markuplint/ml-spec" "2.1.1" "@markuplint/i18n@2.1.1": version "2.1.1" @@ -2153,55 +2164,66 @@ is-plain-object "^5.0.0" mustache "^4.2.0" -"@markuplint/ml-core@2.3.2": - version "2.3.2" - resolved "https://registry.yarnpkg.com/@markuplint/ml-core/-/ml-core-2.3.2.tgz#b86082afe816f52fbfe83ef336f257c63ea507a3" - integrity sha512-aPQXP6qclw6dthJdBaawgVacIspjVmT41RZoSDFnYxp0rpl1bbqxM7S3QDzYtVTLbPWGuZ/mXjBu2B8qzfTUKw== +"@markuplint/ml-core@2.3.3": + version "2.3.3" + resolved "https://registry.yarnpkg.com/@markuplint/ml-core/-/ml-core-2.3.3.tgz#3b6b0b96dc50716fbdede9b91dc686491221b5b1" + integrity sha512-lPrjAW58BOEMQQFKVJ2t2hVH1oHUahSHVkzxbl94qy7nT/fK31PTobMjECBdpyLvclD03mV1T4SL7rq6exGljg== dependencies: "@markuplint/i18n" "2.1.1" "@markuplint/ml-ast" "2.0.1-dev.20220307.0" "@markuplint/ml-config" "2.1.0" - "@markuplint/ml-spec" "2.1.0" - "@markuplint/parser-utils" "2.2.0" + "@markuplint/ml-spec" "2.1.1" + "@markuplint/parser-utils" "2.2.1" debug "^4.3.4" dom-accessibility-api "^0.5.13" postcss-selector-parser "^6.0.10" tslib "^2.3.1" -"@markuplint/ml-spec@2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@markuplint/ml-spec/-/ml-spec-2.1.0.tgz#8adaeea148f45bb81f772412d8a51697343a505c" - integrity sha512-NrkyjaPqFXknElzRB0hACjBtBOkxQZ9kZeMRg7rV0UWxwE0JSIHPJ2NE3nuhbCI/dNy+i52sXvovKudn+MQGxQ== +"@markuplint/ml-spec@2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@markuplint/ml-spec/-/ml-spec-2.1.1.tgz#806194ce35da30832c68262da7fe7c65563a80b2" + integrity sha512-OP9MWxNZYbUPYun6C73fg6FAMpHHj39ixZQaShD4Vw7I6xbVLHgdyA6dAoKdKxcoqP35LX7NKYGsdKz0owiVMQ== dependencies: tslib "^2.3.1" -"@markuplint/parser-utils@2.2.0", "@markuplint/parser-utils@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@markuplint/parser-utils/-/parser-utils-2.2.0.tgz#dbb82baec58d0486c009b57c2fa8a8061f90297e" - integrity sha512-F4k6j0Cgm7xdPuIW+7NUyciH6reHmpvmowXRZ2eRl9LmkKtPzstbfx910/Hsyz6BZdfo0tvFJKQT8jFQG/0/dw== +"@markuplint/parser-utils@2.2.1", "@markuplint/parser-utils@^2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@markuplint/parser-utils/-/parser-utils-2.2.1.tgz#4b38649bf923568269e6cda4bb80f92921b2301e" + integrity sha512-4KMfxMQBTiPlO4SeZrZtonvtz4clSrOPGqkB7tyj2mAP3zKj9CkpL3VPl9JGJL7xa8XndAKOgnIUsIvMomGZFQ== dependencies: "@markuplint/ml-ast" "2.0.1-dev.20220307.0" - "@markuplint/types" "2.1.0" + "@markuplint/types" "2.2.0" tslib "^2.3.1" uuid "^8.3.2" -"@markuplint/rules@2.4.2": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@markuplint/rules/-/rules-2.4.2.tgz#fb665b31135b08dc5b1e0b6eec3c470f61a744a4" - integrity sha512-VHHIx9zPPss/KVa5P9W6cLa14Av/ZNCmbWUxZQn0Ud0RYthTXIlCIzOPfHk1HnroVCvSZlpmhT5t3n9Ws4F/SQ== +"@markuplint/rules@2.4.3": + version "2.4.3" + resolved "https://registry.yarnpkg.com/@markuplint/rules/-/rules-2.4.3.tgz#157c5ecaf63a5da37b7898ea698393153f8e4a8c" + integrity sha512-UaL8Y55L4ixpS2IyY+7eKPWMe+U0/HOjHM5Dz8JlgO5nbp+dJCL1y1HU4x0QpT3XZaRYfXoFbqIrpa61ceildQ== dependencies: - "@markuplint/html-spec" "2.7.0" - "@markuplint/ml-core" "2.3.2" - "@markuplint/ml-spec" "2.1.0" - "@markuplint/types" "2.1.0" + "@markuplint/html-spec" "2.8.0" + "@markuplint/ml-core" "2.3.3" + "@markuplint/ml-spec" "2.1.1" + "@markuplint/types" "2.2.0" debug "^4.3.4" html-entities "^2.3.3" tslib "^2.3.1" -"@markuplint/types@2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@markuplint/types/-/types-2.1.0.tgz#f93236bd07e89889c1ae672d1ac150f4111dd403" - integrity sha512-hsIJT8BBd+1fvmFehGYjuwpggIDSh87qRK7YL9zVlZy+qrCfpSrBqJe0XCC/RwQLR5CD3lKzKSUOuyB8ahcPYg== +"@markuplint/svelte-parser@^2.2.3": + version "2.2.3" + resolved "https://registry.yarnpkg.com/@markuplint/svelte-parser/-/svelte-parser-2.2.3.tgz#0b133b423c9157b08b7d647cf5490397343c19a9" + integrity sha512-TQzuSFL2GrH1l8su+I+IdXXN7R3AgD1yUIjOSxUXo5IZXgqBYjNQGQmCkG0U84KGAJEdBDuzHsORHl3V9OUPPA== + dependencies: + "@markuplint/html-parser" "2.2.2" + "@markuplint/ml-ast" "2.0.1-dev.20220307.0" + "@markuplint/parser-utils" "2.2.1" + svelte "^3.46.6" + tslib "^2.3.1" + +"@markuplint/types@2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@markuplint/types/-/types-2.2.0.tgz#0e467df6b7ac77c8efcc4961091286186a997906" + integrity sha512-xz0PbKSsPlz+GENUgml8nf7AeIathrqhziULQgRo0c/K++LNGxe5WwRsKtVmQXUIyFrPCM1Hw+XWV4nJB5FLYw== dependencies: bcp-47 "1" css-tree "1" @@ -2209,23 +2231,23 @@ leven "3" whatwg-mimetype "2" -"@markuplint/vue-parser@^2.3.1": - version "2.3.1" - resolved "https://registry.yarnpkg.com/@markuplint/vue-parser/-/vue-parser-2.3.1.tgz#2415a85f7351612ad647c30e0e7db42bfad4a51c" - integrity sha512-t1pINE1jzxatdscLJ4gOgbdOr9WB/MYdSr80E2BbwreRC8cYpJKT61vyfOmprBmnJSmssduxOUNi5YtkaiN5ig== +"@markuplint/vue-parser@^2.3.2": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@markuplint/vue-parser/-/vue-parser-2.3.2.tgz#386af46a93d0d9590029dbd03e1493497d868e77" + integrity sha512-9c4GetUNLE/q4d2G2jGwkoVSTAr8iM4om/cpGs2rjKRdczTgIADeTzjx2a88wEkWlBlVojdovR7t532mufomPA== dependencies: - "@markuplint/html-parser" "2.2.1" + "@markuplint/html-parser" "2.2.2" "@markuplint/ml-ast" "2.0.1-dev.20220307.0" - "@markuplint/parser-utils" "2.2.0" + "@markuplint/parser-utils" "2.2.1" tslib "^2.3.1" vue-eslint-parser "^8.3.0" -"@markuplint/vue-spec@^2.1.0": - version "2.1.0" - resolved "https://registry.yarnpkg.com/@markuplint/vue-spec/-/vue-spec-2.1.0.tgz#6e2779117635583c5c4ada39c72b4b04e84bfaf9" - integrity sha512-tGJDCvgWG3ZQQuXAXnL+rq8+Sj2HB5IJO+5/lryuCNsY5Cyp1+NCJmjemcnk7KLTbfcYqA/lSJH6AtQUFAXoCQ== +"@markuplint/vue-spec@^2.1.1": + version "2.1.1" + resolved "https://registry.yarnpkg.com/@markuplint/vue-spec/-/vue-spec-2.1.1.tgz#4bc319b0e8210629c93c3c271b7e266e9225c63b" + integrity sha512-cP3QBiv+dZtPaQRVP5RXZi3vpoPVGZIVv+4xUVva2B/NEmt0EbkG70hbeUug/YasDF39HREgvVjcTeLmOCyf3Q== dependencies: - "@markuplint/ml-spec" "2.1.0" + "@markuplint/ml-spec" "2.1.1" "@nodelib/fs.scandir@2.1.5": version "2.1.5" @@ -2277,44 +2299,44 @@ resolved "https://registry.yarnpkg.com/@npmcli/name-from-folder/-/name-from-folder-1.0.1.tgz#77ecd0a4fcb772ba6fe927e2e2e155fbec2e6b1a" integrity sha512-qq3oEfcLFwNfEYOQ8HLimRGKlD8WSeGEdtUa7hmzpR8Sa7haL1KVQrvgO6wqMjhWFFVjgtrh1gIxDz+P8sjUaA== -"@pkgr/es-modules@^0.6.0": - version "0.6.0" - resolved "https://registry.yarnpkg.com/@pkgr/es-modules/-/es-modules-0.6.0.tgz#43e98496b6044d43faae32c90ee91f5912998a3d" - integrity sha512-jmqSG+i6VRJYaYv3uEEehjvmc+eMpM5uxL1gvqFJcCkfzgwc1SSVjObrpfmOdE0VdE5SBoEujus61zs5W1H0Rg== +"@pkgr/es-modules@^0.6.1": + version "0.6.2" + resolved "https://registry.yarnpkg.com/@pkgr/es-modules/-/es-modules-0.6.2.tgz#81a605d692d8ef297f304bb6b3ccaadf8a1e52f2" + integrity sha512-Fx+TilP+dhat1fvnrE2pEP5xcSQDLSjPV+Uv1IMxsSX6I/G4AWkLtSPwm5b7CN/7Qmr1zt0/9RJYELAWWVSDmw== -"@pkgr/rollup@^3.1.2": - version "3.1.2" - resolved "https://registry.yarnpkg.com/@pkgr/rollup/-/rollup-3.1.2.tgz#4177bed931d7b98b7b705cdfe6e3e9b65659c8ab" - integrity sha512-AjG+DC0g1eNDkohgCwftYlEZFWUnGNA4vxosW0okyeoOrTqxPaBdAZo/YboerSXTw27n3qOO+RuGa8kH5n245g== - dependencies: - "@babel/core" "^7.18.5" - "@babel/plugin-proposal-decorators" "^7.18.2" - "@babel/preset-env" "^7.18.2" - "@babel/preset-typescript" "^7.17.12" - "@pkgr/es-modules" "^0.6.0" - "@pkgr/umd-globals" "^0.8.0" - "@pkgr/utils" "^2.2.0" +"@pkgr/rollup@^3.1.4": + version "3.1.4" + resolved "https://registry.yarnpkg.com/@pkgr/rollup/-/rollup-3.1.4.tgz#d8145159fdd07cb579374aaa6c072313ec9072a6" + integrity sha512-OwR/WxTz0LjUwQYvg5YHrAazIi0yj4CH9WpKdo4UOI2kkv9jSJdI6Eh2ZAMcMUNv51yU1NzpNvsrbTw2CrXJqw== + dependencies: + "@babel/core" "^7.18.6" + "@babel/plugin-proposal-decorators" "^7.18.6" + "@babel/preset-env" "^7.18.6" + "@babel/preset-typescript" "^7.18.6" + "@pkgr/es-modules" "^0.6.1" + "@pkgr/umd-globals" "^0.8.1" + "@pkgr/utils" "^2.3.0" "@rollup/plugin-alias" "^3.1.9" "@rollup/plugin-babel" "^5.3.1" - "@rollup/plugin-commonjs" "^22.0.0" - "@rollup/plugin-json" "^4.0.3" + "@rollup/plugin-commonjs" "^22.0.1" + "@rollup/plugin-json" "^4.1.0" "@rollup/plugin-node-resolve" "^13.3.0" "@rollup/plugin-replace" "^4.0.0" "@rollup/plugin-url" "^7.0.0" builtin-modules "^3.3.0" commander "^9.3.0" - core-js "^3.23.1" - debug "^4.3.2" - esbuild "^0.14.46" + core-js "^3.23.3" + debug "^4.3.4" + esbuild "^0.14.48" is-glob "^4.0.3" - jsox "^1.2.111" + jsox "^1.2.113" lodash-es "^4.17.21" micromatch "^4.0.5" postcss "^8.4.14" - rollup "^2.75.6" + rollup "^2.75.7" rollup-plugin-copy "^3.4.0" rollup-plugin-esbuild "^4.9.1" - rollup-plugin-postcss "^4.0.1" + rollup-plugin-postcss "^4.0.2" rollup-plugin-terser "^7.0.2" rollup-plugin-unassert "^0.4.0" rollup-plugin-vue "^6.0.0" @@ -2322,15 +2344,15 @@ tslib "^2.4.0" unassert "^1.6.0" -"@pkgr/umd-globals@^0.8.0": - version "0.8.0" - resolved "https://registry.yarnpkg.com/@pkgr/umd-globals/-/umd-globals-0.8.0.tgz#1249860b007e02b0e60290c11aec86ee66d44798" - integrity sha512-5YnNlHQN78PQ/OpGNyndo980hZQrbODLDymnamtaSBcBgC0DsAfWLZgxUpmZuSpBWKWTQrfoavR8+NyUMZeOCQ== +"@pkgr/umd-globals@^0.8.1": + version "0.8.2" + resolved "https://registry.yarnpkg.com/@pkgr/umd-globals/-/umd-globals-0.8.2.tgz#c70b7bfef502c639c8ea32786dad8c435462b469" + integrity sha512-BN28H4aFKL8YH+ur6TCdyAQK+JjtoWAK0qxG+xVrRU3X/tks4kUVHhgETFgQbH7gy1u/KDcvU2VxBN/Aukc7IQ== -"@pkgr/utils@^2.1.0", "@pkgr/utils@^2.2.0": - version "2.2.0" - resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.2.0.tgz#ccbf06cd010684b477dde40ec833a28f0c2136c4" - integrity sha512-/+EeY/T/NLCfF4rvgUetl7ERNwoPz5q/p+8CYeAIFblsKSQbVJjmMccs/Y7CsOPv47hXcBrhk5IqOf9AqRNfhg== +"@pkgr/utils@^2.2.0", "@pkgr/utils@^2.3.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.3.0.tgz#3b8491f112a80839450498816767eb03b7db6139" + integrity sha512-7dIJ9CRVzBnqyEl7diUHPUFJf/oty2SeoVzcMocc5PeOUDK9KGzvgIBjGRRzzlRDaOjh3ADwH0WeibQvi3ls2Q== dependencies: cross-spawn "^7.0.3" is-glob "^4.0.3" @@ -2376,7 +2398,7 @@ "@babel/helper-module-imports" "^7.10.4" "@rollup/pluginutils" "^3.1.0" -"@rollup/plugin-commonjs@^22.0.0": +"@rollup/plugin-commonjs@^22.0.1": version "22.0.1" resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-22.0.1.tgz#f7cb777d20de3eeeaf994f39080115c336bef810" integrity sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ== @@ -2389,7 +2411,7 @@ magic-string "^0.25.7" resolve "^1.17.0" -"@rollup/plugin-json@^4.0.3": +"@rollup/plugin-json@^4.1.0": version "4.1.0" resolved "https://registry.yarnpkg.com/@rollup/plugin-json/-/plugin-json-4.1.0.tgz#54e09867ae6963c593844d8bd7a9c718294496f3" integrity sha512-yfLbTdNS6amI/2OpmbiBoW12vngr5NW2jCJVZSBEz+H5KfUJZ2M7sDjk0U6GOOdCWFVScShte29o9NezJ53TPw== @@ -2672,10 +2694,10 @@ resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA== -"@types/node@*", "@types/node@>=12", "@types/node@^18.0.0": - version "18.0.0" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a" - integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA== +"@types/node@*", "@types/node@>=12", "@types/node@^18.0.0", "@types/node@^18.0.3": + version "18.0.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.3.tgz#463fc47f13ec0688a33aec75d078a0541a447199" + integrity sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ== "@types/node@^12.7.1": version "12.20.55" @@ -2736,14 +2758,14 @@ dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@^5.30.3": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.3.tgz#2f293e56b73c4f281e48d253af4a17f21a55d54c" - integrity sha512-QEgE1uahnDbWEkZlidq7uKB630ny1NN8KbLPmznX+8hYsYpoV1/quG1Nzvs141FVuumuS7O0EpqYw3RB4AVzRg== +"@typescript-eslint/eslint-plugin@^5.30.5": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.5.tgz#e9a0afd6eb3b1d663db91cf1e7bc7584d394503d" + integrity sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig== dependencies: - "@typescript-eslint/scope-manager" "5.30.3" - "@typescript-eslint/type-utils" "5.30.3" - "@typescript-eslint/utils" "5.30.3" + "@typescript-eslint/scope-manager" "5.30.5" + "@typescript-eslint/type-utils" "5.30.5" + "@typescript-eslint/utils" "5.30.5" debug "^4.3.4" functional-red-black-tree "^1.0.1" ignore "^5.2.0" @@ -2751,14 +2773,14 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/parser@^5.30.3": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.3.tgz#d288c7dbeadf22403112c773dd53e0700f6dd6d5" - integrity sha512-ddwGEPC3E49DduAUC8UThQafHRE5uc1NE8jdOgl+w8/NrYF50MJQNeD3u4JZrqAXdY9rJz0CdQ9HpNME20CzkA== +"@typescript-eslint/parser@^5.30.5": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.5.tgz#f667c34e4e4c299d98281246c9b1e68c03a92522" + integrity sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q== dependencies: - "@typescript-eslint/scope-manager" "5.30.3" - "@typescript-eslint/types" "5.30.3" - "@typescript-eslint/typescript-estree" "5.30.3" + "@typescript-eslint/scope-manager" "5.30.5" + "@typescript-eslint/types" "5.30.5" + "@typescript-eslint/typescript-estree" "5.30.5" debug "^4.3.4" "@typescript-eslint/scope-manager@5.29.0": @@ -2769,20 +2791,20 @@ "@typescript-eslint/types" "5.29.0" "@typescript-eslint/visitor-keys" "5.29.0" -"@typescript-eslint/scope-manager@5.30.3": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.3.tgz#de7edb0b59efd71975a82cbf3f1b97c5c90769f0" - integrity sha512-yVJIIUXeo/vv6Alj6lKBvsqnRs5hcxUpN3Dg3aD9Zv6r7p6Nn106jJcr5rnpRHAReEb/aMI2RWrt3JmL17eCVA== +"@typescript-eslint/scope-manager@5.30.5": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.5.tgz#7f90b9d6800552c856a5f3644f5e55dd1469d964" + integrity sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg== dependencies: - "@typescript-eslint/types" "5.30.3" - "@typescript-eslint/visitor-keys" "5.30.3" + "@typescript-eslint/types" "5.30.5" + "@typescript-eslint/visitor-keys" "5.30.5" -"@typescript-eslint/type-utils@5.30.3": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.3.tgz#1bb4efcfc8de38086d50096709b2cccf72684515" - integrity sha512-IIzakE7OXOqdwPaXhRiPnaZ8OuJJYBLufOffd9fqzkI4IMFIYq8KC7bghdnF7QUJTirURRErQFrJ/w5UpwIqaw== +"@typescript-eslint/type-utils@5.30.5": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.5.tgz#7a9656f360b4b1daea635c4621dab053d08bf8a9" + integrity sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw== dependencies: - "@typescript-eslint/utils" "5.30.3" + "@typescript-eslint/utils" "5.30.5" debug "^4.3.4" tsutils "^3.21.0" @@ -2791,10 +2813,10 @@ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.29.0.tgz#7861d3d288c031703b2d97bc113696b4d8c19aab" integrity sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg== -"@typescript-eslint/types@5.30.3": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.3.tgz#8ef6313dcec2e297b167dd25ef363e36857c49ff" - integrity sha512-vshU3pjSTgBPNgfd55JLYngHkXuwQP68fxYFUAg1Uq+JrR3xG/XjvL9Dmv28CpOERtqwkaR4QQ3mD0NLZcE2Xw== +"@typescript-eslint/types@5.30.5": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.5.tgz#36a0c05a72af3623cdf9ee8b81ea743b7de75a98" + integrity sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw== "@typescript-eslint/typescript-estree@5.29.0": version "5.29.0" @@ -2809,13 +2831,13 @@ semver "^7.3.7" tsutils "^3.21.0" -"@typescript-eslint/typescript-estree@5.30.3": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.3.tgz#d5ff918499dd56039864c157a898b1322d7bff8c" - integrity sha512-jqVh5N9AJx6+7yRgoA+ZelAFrHezgI9pzI9giv7s84DDOmtpFwTgURcpICDHyz9x6vAeOu91iACZ4dBTVfzIyA== +"@typescript-eslint/typescript-estree@5.30.5": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.5.tgz#c520e4eba20551c4ec76af8d344a42eb6c9767bb" + integrity sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ== dependencies: - "@typescript-eslint/types" "5.30.3" - "@typescript-eslint/visitor-keys" "5.30.3" + "@typescript-eslint/types" "5.30.5" + "@typescript-eslint/visitor-keys" "5.30.5" debug "^4.3.4" globby "^11.1.0" is-glob "^4.0.3" @@ -2834,15 +2856,15 @@ eslint-scope "^5.1.1" eslint-utils "^3.0.0" -"@typescript-eslint/utils@5.30.3", "@typescript-eslint/utils@^5.10.0": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.3.tgz#be2ebaef73e5610c866c4f29ed33669acc89e3fc" - integrity sha512-OEaBXGxxdIy35H+jyXfYAMQ66KMJczK9hEhL3gR6IRbWe5PyK+bPDC9zbQNVII6rNFTfF/Mse0z21NlEU+vOMw== +"@typescript-eslint/utils@5.30.5", "@typescript-eslint/utils@^5.10.0": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.5.tgz#3999cbd06baad31b9e60d084f20714d1b2776765" + integrity sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA== dependencies: "@types/json-schema" "^7.0.9" - "@typescript-eslint/scope-manager" "5.30.3" - "@typescript-eslint/types" "5.30.3" - "@typescript-eslint/typescript-estree" "5.30.3" + "@typescript-eslint/scope-manager" "5.30.5" + "@typescript-eslint/types" "5.30.5" + "@typescript-eslint/typescript-estree" "5.30.5" eslint-scope "^5.1.1" eslint-utils "^3.0.0" @@ -2854,12 +2876,12 @@ "@typescript-eslint/types" "5.29.0" eslint-visitor-keys "^3.3.0" -"@typescript-eslint/visitor-keys@5.30.3": - version "5.30.3" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.3.tgz#2c5f7a16c36748d1c51ea5a9c29bfb64780ce466" - integrity sha512-ep2xtHOhnSRt6fDP9DSSxrA/FqZhdMF7/Y9fYsxrKss2uWJMbzJyBJ/We1fKc786BJ10pHwrzUlhvpz8i7XzBg== +"@typescript-eslint/visitor-keys@5.30.5": + version "5.30.5" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.5.tgz#d4bb969202019d5d5d849a0aaedc7370cc044b14" + integrity sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA== dependencies: - "@typescript-eslint/types" "5.30.3" + "@typescript-eslint/types" "5.30.5" eslint-visitor-keys "^3.3.0" "@vue/babel-helper-vue-jsx-merge-props@^1.2.1": @@ -2899,31 +2921,31 @@ lodash.kebabcase "^4.1.1" svg-tags "^1.0.0" -"@vue/babel-preset-jsx@^1.2.4": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.2.4.tgz#92fea79db6f13b01e80d3a0099e2924bdcbe4e87" - integrity sha512-oRVnmN2a77bYDJzeGSt92AuHXbkIxbf/XXSE3klINnh9AXBmVS1DGa1f0d+dDYpLfsAKElMnqKTQfKn7obcL4w== +"@vue/babel-preset-jsx@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@vue/babel-preset-jsx/-/babel-preset-jsx-1.3.0.tgz#29f56b7edbfab875dc54a4cbe34646f9a17d830a" + integrity sha512-WFHjZWoUV/W0VAnEM/vi3zhdKsWrYf1TVFuxrpMQXVjhU8w8cxAUzNkmUDvf5iugCNzQssTJp9LjDPHAcmCqUw== dependencies: "@vue/babel-helper-vue-jsx-merge-props" "^1.2.1" "@vue/babel-plugin-transform-vue-jsx" "^1.2.1" - "@vue/babel-sugar-composition-api-inject-h" "^1.2.1" - "@vue/babel-sugar-composition-api-render-instance" "^1.2.4" + "@vue/babel-sugar-composition-api-inject-h" "^1.3.0" + "@vue/babel-sugar-composition-api-render-instance" "^1.3.0" "@vue/babel-sugar-functional-vue" "^1.2.2" "@vue/babel-sugar-inject-h" "^1.2.2" - "@vue/babel-sugar-v-model" "^1.2.3" - "@vue/babel-sugar-v-on" "^1.2.3" + "@vue/babel-sugar-v-model" "^1.3.0" + "@vue/babel-sugar-v-on" "^1.3.0" -"@vue/babel-sugar-composition-api-inject-h@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.2.1.tgz#05d6e0c432710e37582b2be9a6049b689b6f03eb" - integrity sha512-4B3L5Z2G+7s+9Bwbf+zPIifkFNcKth7fQwekVbnOA3cr3Pq71q71goWr97sk4/yyzH8phfe5ODVzEjX7HU7ItQ== +"@vue/babel-sugar-composition-api-inject-h@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.3.0.tgz#1402f34cea217c7117fb66fdcbd94e1c370cd9c0" + integrity sha512-pIDOutEpqbURdVw7xhgxmuDW8Tl+lTgzJZC5jdlUu0lY2+izT9kz3Umd/Tbu0U5cpCJ2Yhu87BZFBzWpS0Xemg== dependencies: "@babel/plugin-syntax-jsx" "^7.2.0" -"@vue/babel-sugar-composition-api-render-instance@^1.2.4": - version "1.2.4" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.2.4.tgz#e4cbc6997c344fac271785ad7a29325c51d68d19" - integrity sha512-joha4PZznQMsxQYXtR3MnTgCASC9u3zt9KfBxIeuI5g2gscpTsSKRDzWQt4aqNIpx6cv8On7/m6zmmovlNsG7Q== +"@vue/babel-sugar-composition-api-render-instance@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.3.0.tgz#3039d3d9eca09e56d41a56a03d73a146211c18a5" + integrity sha512-NYNnU2r7wkJLMV5p9Zj4pswmCs037O/N2+/Fs6SyX7aRFzXJRP1/2CZh5cIwQxWQajHXuCUd5mTb7DxoBVWyTg== dependencies: "@babel/plugin-syntax-jsx" "^7.2.0" @@ -2941,10 +2963,10 @@ dependencies: "@babel/plugin-syntax-jsx" "^7.2.0" -"@vue/babel-sugar-v-model@^1.2.3": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.2.3.tgz#fa1f29ba51ebf0aa1a6c35fa66d539bc459a18f2" - integrity sha512-A2jxx87mySr/ulAsSSyYE8un6SIH0NWHiLaCWpodPCVOlQVODCaSpiR4+IMsmBr73haG+oeCuSvMOM+ttWUqRQ== +"@vue/babel-sugar-v-model@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.3.0.tgz#e4da7ae27a74c473b1abba060260ecaa8cb6e46b" + integrity sha512-zcsabmdX48JmxTObn3xmrvvdbEy8oo63DphVyA3WRYGp4SEvJRpu/IvZCVPl/dXLuob2xO/QRuncqPgHvZPzpA== dependencies: "@babel/plugin-syntax-jsx" "^7.2.0" "@vue/babel-helper-vue-jsx-merge-props" "^1.2.1" @@ -2953,10 +2975,10 @@ html-tags "^2.0.0" svg-tags "^1.0.0" -"@vue/babel-sugar-v-on@^1.2.3": - version "1.2.3" - resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.2.3.tgz#342367178586a69f392f04bfba32021d02913ada" - integrity sha512-kt12VJdz/37D3N3eglBywV8GStKNUhNrsxChXIV+o0MwVXORYuhDTHJRKPgLJRb/EY3vM2aRFQdxJBp9CLikjw== +"@vue/babel-sugar-v-on@^1.3.0": + version "1.3.0" + resolved "https://registry.yarnpkg.com/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.3.0.tgz#d35756f8720e527a3b1867e21c3c248cde47ca87" + integrity sha512-8VZgrS0G5bh7+Prj7oJkzg9GvhSPnuW5YT6MNaVAEy4uwxRLJ8GqHenaStfllChTao4XZ3EZkNtHB4Xbr/ePdA== dependencies: "@babel/plugin-syntax-jsx" "^7.2.0" "@vue/babel-plugin-transform-vue-jsx" "^1.2.1" @@ -3877,7 +3899,7 @@ core-js-compat@^3.21.0, core-js-compat@^3.22.1: browserslist "^4.21.0" semver "7.0.0" -core-js@^3.23.1, core-js@^3.23.3: +core-js@^3.23.3: version "3.23.3" resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.23.3.tgz#3b977612b15da6da0c9cc4aec487e8d24f371112" integrity sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q== @@ -4084,10 +4106,10 @@ dataloader@^1.4.0: resolved "https://registry.yarnpkg.com/dataloader/-/dataloader-1.4.0.tgz#bca11d867f5d3f1b9ed9f737bd15970c65dff5c8" integrity sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw== -deasync@^0.1.26: - version "0.1.26" - resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.26.tgz#87f54440034b87afc1e6a46667930c4e06363256" - integrity sha512-YKw0BmJSWxkjtQsbgn6Q9CHSWB7DKMen8vKrgyC006zy0UZ6nWyGidB0IzZgqkVRkOglAeUaFtiRTeLyel72bg== +deasync@^0.1.27: + version "0.1.27" + resolved "https://registry.yarnpkg.com/deasync/-/deasync-0.1.27.tgz#2a669a68d2d43bf8effa5a7efe7d8e1f1e447216" + integrity sha512-aCt6M9Ilkvs8TKIchmibUpNe/QSp9UNQL6YkvVraAce/SFFZCvYw3lQevl6MlUDn8Xr4QD4wYTerWH22yn+ODQ== dependencies: bindings "^1.5.0" node-addon-api "^1.7.1" @@ -4535,7 +4557,7 @@ esbuild-windows-arm64@0.14.48: resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.48.tgz#762c0562127d8b09bfb70a3c816460742dd82880" integrity sha512-HHaOMCsCXp0rz5BT2crTka6MPWVno121NKApsGs/OIW5QC0ggC69YMGs1aJct9/9FSUF4A1xNE/cLvgB5svR4g== -esbuild@^0.14.46: +esbuild@^0.14.48: version "0.14.48" resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.14.48.tgz#da5d8d25cd2d940c45ea0cfecdca727f7aee2b85" integrity sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA== @@ -4637,18 +4659,18 @@ eslint-import-resolver-node@^0.3.6: debug "^3.2.7" resolve "^1.20.0" -eslint-import-resolver-typescript@^3.1.4: - version "3.1.5" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.1.5.tgz#d22d6911d496855ae7758ba7f9bbc078ce3b3cfd" - integrity sha512-e6RV/fghzX5DGP98dg3ZmGF4qr1QzVgJdbVkYl8jJ2iO7Ox9wOdTNMBoYRqbvavf2ofT8xKTd4JnY+X4t2TtXw== +eslint-import-resolver-typescript@^3.2.4: + version "3.2.4" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.2.4.tgz#74e930272de0ed84489f6a139d2c0db80bf7c8cf" + integrity sha512-XmB2RZq534N3cZajuyMb8c2TJCkCHtU7gUHZg2iJaULIgfIclfQoih08C4/4RmdKZgymAkfHTo4sdmljC6/5qA== dependencies: debug "^4.3.4" enhanced-resolve "^5.10.0" - get-tsconfig "^4.1.0" + get-tsconfig "npm:@unts/get-tsconfig@^4.1.1" globby "^13.1.2" is-core-module "^2.9.0" is-glob "^4.0.3" - synckit "^0.7.1" + synckit "^0.7.2" eslint-mdx@^2.0.1: version "2.0.1" @@ -4747,10 +4769,10 @@ eslint-plugin-jsdoc@^39.3.3: semver "^7.3.7" spdx-expression-parse "^3.0.1" -eslint-plugin-json-schema-validator@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-json-schema-validator/-/eslint-plugin-json-schema-validator-3.1.0.tgz#e9f7b523ca8e0f4edd0fe46d8be9f4302b14120f" - integrity sha512-mS58nLh1ApTW1RHE0c1KzDs/24YeR6VkHh+Sc7IvdndrDfSvBYE9bt4wFTRjRIwhW/u1bMG/Ebh2L66qw7KGyQ== +eslint-plugin-json-schema-validator@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-json-schema-validator/-/eslint-plugin-json-schema-validator-3.1.3.tgz#703ed447affdf3ca3dd00b64cff57d944181684f" + integrity sha512-4McQAC6OooHHIfPQV5u3utPbC7d1AKrT5fACqw4/lXYg7JtC74fxxmgFP3FRyOsLYPd2SfQqS/usdYsjzqYJyQ== dependencies: ajv "^8.0.0" debug "^4.3.1" @@ -4763,10 +4785,10 @@ eslint-plugin-json-schema-validator@^3.1.0: tunnel-agent "^0.6.0" yaml-eslint-parser "^1.0.0" -eslint-plugin-jsonc@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.3.0.tgz#7afaae9b4f12bbc3b1d2193ee174d53ee3190c19" - integrity sha512-QqHj7Chw8vsALsCOhFxecRIepxpbcpmMon9yA1+GaYk1Am0GanHAwnTkeVX+/ysAb4QTkeGMZ+ZPK4TKrZ/VSw== +eslint-plugin-jsonc@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.3.1.tgz#2048b559dc4239bf3c9c0f52d945c7e12e210c19" + integrity sha512-8sgWGWiVRMFL6xGawRymrE4RjZJgiU0rXYgFFb71wvdwuUkPgWSvfFtc8jfwcgjjqFjis8vzCUFsg7SciMEDWw== dependencies: eslint-utils "^3.0.0" jsonc-eslint-parser "^2.0.4" @@ -4779,15 +4801,15 @@ eslint-plugin-markdown@^2.2.1: dependencies: mdast-util-from-markdown "^0.8.5" -eslint-plugin-markup@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-markup/-/eslint-plugin-markup-0.9.0.tgz#d99cb11388cd7c477bd8ae0a1015ab8a11f45f35" - integrity sha512-+pTitoTZwnAVvTXHidqWseflxAGkJdqJUjRvQDscZflXviev6fmavoUGWS3gNWi4eSyNTLMyDQJDeOiTX5RsFQ== +eslint-plugin-markup@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-markup/-/eslint-plugin-markup-0.10.0.tgz#4fa6dc4b43bbd0e44676355657a3509d7b0271ad" + integrity sha512-vC7b3HJldGSb10utUC+cPm2xdsrLz+caKMsHVweOKcBTvyt7tl3wZEXl85gCFjBFsZRraDPZ9qpZlzWd2RvLww== dependencies: cosmiconfig "^7.0.1" eslint-plugin-utils "^0.3.0" - markuplint "^2.7.1" - synckit "^0.7.1" + markuplint "^2.9.0" + synckit "^0.7.2" tslib "^2.4.0" eslint-plugin-mdx@^2.0.1: @@ -4804,10 +4826,10 @@ eslint-plugin-mdx@^2.0.1: unified "^10.1.2" vfile "^5.3.2" -eslint-plugin-n@^15.2.3: - version "15.2.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-15.2.3.tgz#b8850b90a8c27d3d880521ad90dbf537ac0a9830" - integrity sha512-H+KC7U5R+3IWTeRnACm/4wlqLvS1Q7M6t7BGhn89qXDkZan8HTAEv3ouIONA0ifDwc2YzPFmyPzHuNLddNK4jw== +eslint-plugin-n@^15.2.4: + version "15.2.4" + resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-15.2.4.tgz#d62021a0821ae650701ed459756aaf478a9b6056" + integrity sha512-tjnVMv2fiXYMnuiIFI8QMtyUFI42SckEEWvi8h68SWGWshfqO6SSCASy24dGMGAiy7NUk6DZt90DM0iNUsmQ5w== dependencies: builtins "^5.0.1" eslint-plugin-es "^4.1.0" @@ -4890,10 +4912,10 @@ eslint-plugin-sonarjs@^0.13.0: resolved "https://registry.yarnpkg.com/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.13.0.tgz#c34d140cc90abaaed38f5a5201a2ccdebe398862" integrity sha512-t3m7ta0EspzDxSOZh3cEOJIJVZgN/TlJYaBGnQlK6W/PZNbWep8q4RQskkJkA7/zwNpX0BaoEOSUUrqaADVoqA== -eslint-plugin-svelte@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-svelte/-/eslint-plugin-svelte-2.0.0.tgz#b77a7c458b6139844acfe6a641abd268f4e98a2d" - integrity sha512-s7uyRqbRtQ+7q9anee4OmDJVXmNriPvk2iAxxFjlk5j1THq/6pVGn5SKtD7rXu989WkQ+fsymMHCZmOMpx+FpQ== +eslint-plugin-svelte@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-svelte/-/eslint-plugin-svelte-2.2.0.tgz#fe7376245af002681aad38a9ba266391acab6723" + integrity sha512-V7LwA2lEzGqQ1/Cor3uZS/dL3ff6kdHX44TNYViXyHifIEsFiN2TJWdnH+n6NewjCQ93KVI4cWeZI0Pl7ET/hA== dependencies: debug "^4.3.1" eslint-utils "^3.0.0" @@ -4913,10 +4935,10 @@ eslint-plugin-toml@^0.3.1: lodash "^4.17.19" toml-eslint-parser "^0.4.0" -eslint-plugin-unicorn@^43.0.0: - version "43.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-43.0.0.tgz#c26fdfd146036b3f7951fa0f8c9af2b81bd87096" - integrity sha512-Z/6HX8yry+zAjo4jHHTAbe1rfniox7qgmCReGBfTc/CVgotfScaMCc4dtSSTHlJ+7Yix5o6LPXzwwpuGGFricg== +eslint-plugin-unicorn@^43.0.1: + version "43.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-43.0.1.tgz#71c79caa95dde626c1cd285540fbccaafc262511" + integrity sha512-wYvF6q0RRTKw6gzbKy5bbazWUrBEPIto2S9U6eSF+tsHgtgE+CwQ6Bww1W2Ie9TRED01QkZRN79c5aVMFgrFYw== dependencies: "@babel/helper-validator-identifier" "^7.18.6" ci-info "^3.3.2" @@ -4938,10 +4960,10 @@ eslint-plugin-utils@^0.3.0: resolved "https://registry.yarnpkg.com/eslint-plugin-utils/-/eslint-plugin-utils-0.3.0.tgz#c0e8f6339c1130d3472e02c0f25f6afcaad55cb5" integrity sha512-8f7VcZNYE1f3enuW+FdEJlcC233FEDq4ac7jtSh8PM6G+sAEj/EkNuxvcv1Vs3el7mfBKHWNtDOlC8qeKZz2FA== -eslint-plugin-vue@^9.1.1: - version "9.1.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.1.1.tgz#341f7533cb041958455138834341d5be01f9f327" - integrity sha512-W9n5PB1X2jzC7CK6riG0oAcxjmKrjTF6+keL1rni8n57DZeilx/Fulz+IRJK3lYseLNAygN0I62L7DvioW40Tw== +eslint-plugin-vue@^9.2.0: + version "9.2.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.2.0.tgz#b7ca02b2ce8218b7586346440fc61c2655db353a" + integrity sha512-W2hc+NUXoce8sZtWgZ45miQTy6jNyuSdub5aZ1IBune4JDeAyzucYX0TzkrQ1jMO52sNUDYlCIHDoaNePe0p5g== dependencies: eslint-utils "^3.0.0" natural-compare "^1.4.0" @@ -5508,10 +5530,10 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" -get-tsconfig@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.1.0.tgz#325fd5a58ee94596037263ce8b7db0ce8ac7b925" - integrity sha512-bhshxJhpfmeQ8x4fAvDqJV2VfGp5TfHdLpmBpNZZhMoVyfIrOippBW4mayC3DT9Sxuhcyl56Efw61qL28hG4EQ== +"get-tsconfig@npm:@unts/get-tsconfig@^4.1.1": + version "4.1.1" + resolved "https://registry.yarnpkg.com/@unts/get-tsconfig/-/get-tsconfig-4.1.1.tgz#f2d308a0c9e56a73b815b0525d4bf37a28914cdd" + integrity sha512-8mPf1bBzF2S+fyuyYOQWjDcaJTTgJ14UAnXW9I3KwrqioRWG1byRXHwciYdqXpbdOiu7Fg4WJbymBIakGk+aMA== git-raw-commits@^2.0.0: version "2.0.11" @@ -6753,7 +6775,7 @@ jsonparse@^1.2.0: resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== -jsox@^1.2.111: +jsox@^1.2.113: version "1.2.113" resolved "https://registry.yarnpkg.com/jsox/-/jsox-1.2.113.tgz#c5335ef27a18828da10ccde6b13c0a47081bd208" integrity sha512-Qvfxml1nIeG5mvuxgmAocz8fBtjnP9E92gvS76gS8akZs3cGPmq6gqNL+ashjsWj2ETt81qB1aWrWdEMRw3LEA== @@ -7076,32 +7098,32 @@ markdown-table@^3.0.0: resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.2.tgz#9b59eb2c1b22fe71954a65ff512887065a7bb57c" integrity sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA== -markuplint-angular-parser@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/markuplint-angular-parser/-/markuplint-angular-parser-1.1.2.tgz#5fd170cd0ed492ccb5af266afd96db46f931cbf2" - integrity sha512-nEHdzQTjb/l0dB5yo8weZo9VsL3qcTjR1+p97IqGwnt/rfS4KaHs3b+fhEXap1dRHoc8vZGo37Vq+n99Uuc8Pw== +markuplint-angular-parser@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/markuplint-angular-parser/-/markuplint-angular-parser-1.1.3.tgz#b724543a8926f60f779b969c7fb6d955984ad274" + integrity sha512-QWah/F16iRe+ISlJnD0aCPzn1D5G/U/mHoc0vLmUSqurDs8bwejBcC9o83YBTG4qCyTpqiDZ4Op4Ju0wjBPXCg== dependencies: - "@markuplint/html-parser" "^2.2.1" + "@markuplint/html-parser" "^2.2.2" "@markuplint/ml-ast" "^2.0.0" - "@markuplint/parser-utils" "^2.2.0" + "@markuplint/parser-utils" "^2.2.1" angular-html-parser "^1.8.0" tslib "^2.4.0" -markuplint@^2.7.1: - version "2.8.0" - resolved "https://registry.yarnpkg.com/markuplint/-/markuplint-2.8.0.tgz#38c6e8c56c1c779d19cf943406a7a315d3795cf8" - integrity sha512-lulonPDn+/HJxn5F1NuGXfJ///BQugNPhPYWC03KuvhzyXBbB7WNFcF4GHezuXZ3DD4w1+aWczph7ghUXOWIKQ== +markuplint@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/markuplint/-/markuplint-2.9.0.tgz#1b9f2257c9993a24c91fd9af690b08750bdc092b" + integrity sha512-zfJepajlWeQnfCQRME07CwZb4As0rjM8Mh/lv02zXEnVWJzsSX/DeLrTw3E2U3f3d6ehRoyV4WM4NxTlzI5IiA== dependencies: - "@markuplint/create-rule-helper" "2.3.2" - "@markuplint/file-resolver" "2.5.2" - "@markuplint/html-parser" "2.2.1" - "@markuplint/html-spec" "2.7.0" + "@markuplint/create-rule-helper" "2.3.3" + "@markuplint/file-resolver" "2.5.3" + "@markuplint/html-parser" "2.2.2" + "@markuplint/html-spec" "2.8.0" "@markuplint/i18n" "2.1.1" "@markuplint/ml-ast" "2.0.1-dev.20220307.0" "@markuplint/ml-config" "2.1.0" - "@markuplint/ml-core" "2.3.2" - "@markuplint/ml-spec" "2.1.0" - "@markuplint/rules" "2.4.2" + "@markuplint/ml-core" "2.3.3" + "@markuplint/ml-spec" "2.1.1" + "@markuplint/rules" "2.4.3" chokidar "^3.5.3" cli-color "^2.0.2" debug "^4.3.4" @@ -8769,12 +8791,19 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier-plugin-pkg@^0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/prettier-plugin-pkg/-/prettier-plugin-pkg-0.15.0.tgz#5a8ef642187749e87ad6505c1cce369675144fd5" - integrity sha512-HhscJxwM0Jc4Wp/a0kr4yvOwcUtoQVC/1KEPGByUNEv/pdXFY3Ih4/uLF4cEUYM9HkmCQ/PiIoLasc8qWUA9Fg== +prettier-plugin-ini@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-plugin-ini/-/prettier-plugin-ini-1.0.0.tgz#af0ecea207683c1598190d69e9a8cb49e94690eb" + integrity sha512-/b/D6U2Ivo0CW8kvfXpzNTl/6ehnTngNeUiS1Ao69uxbugHL1BVaT1gUX7BgobrdQPvWRgH2j2hOyBw7bEPNEA== + dependencies: + prettier ">=2.3" -prettier-plugin-sh@^0.12.5: +prettier-plugin-pkg@^0.16.0: + version "0.16.0" + resolved "https://registry.yarnpkg.com/prettier-plugin-pkg/-/prettier-plugin-pkg-0.16.0.tgz#eb2e063796a77bf6fd786f8d3699f3a17b8dac77" + integrity sha512-+pUzsNzs16OSUf82OqF6+B4RajiDoHToJElp8T6YjcPF3uKCy7P3zk2rpdBPPXVMaR+lp5c4C1rbTniC34tz6g== + +prettier-plugin-sh@^0.12.6: version "0.12.6" resolved "https://registry.yarnpkg.com/prettier-plugin-sh/-/prettier-plugin-sh-0.12.6.tgz#7d0f184c3106a387817afaa136429958a0d1a64a" integrity sha512-Tqzj6mDW/+8umOgZO/qfLcpWYZFnRKYC3T9uK3t5aKpxeIspB7rT70TS3IFjUnYNQOLUM542HRW18L6Imj+uYQ== @@ -8802,7 +8831,7 @@ prettier-plugin-toml@^0.3.1: "@toml-tools/parser" "^0.3.1" prettier "^1.16.0" -prettier@>=2.3.0, prettier@>=2.4.0, prettier@^1.16.0, prettier@^1.19.1, prettier@^2.6.2, prettier@^2.7.1: +prettier@>=2.3, prettier@>=2.3.0, prettier@>=2.4.0, prettier@^1.16.0, prettier@^1.19.1, prettier@^2.6.2, prettier@^2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== @@ -10080,7 +10109,7 @@ rollup-plugin-esbuild@^4.9.1: joycon "^3.0.1" jsonc-parser "^3.0.0" -rollup-plugin-postcss@^4.0.1: +rollup-plugin-postcss@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz#15e9462f39475059b368ce0e49c800fa4b1f7050" integrity sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w== @@ -10144,10 +10173,10 @@ rollup-pluginutils@^2.8.2: dependencies: estree-walker "^0.6.1" -rollup@^2.75.6: - version "2.75.7" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.75.7.tgz#221ff11887ae271e37dcc649ba32ce1590aaa0b9" - integrity sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ== +rollup@^2.75.7: + version "2.76.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.76.0.tgz#c69fe03db530ac53fcb9523b3caa0d3c0b9491a1" + integrity sha512-9jwRIEY1jOzKLj3nsY/yot41r19ITdQrhs+q3ggNWhr9TQgduHqANvPpS32RNpzGklJu3G1AJfvlZLi/6wFgWA== optionalDependencies: fsevents "~2.3.2" @@ -10699,6 +10728,11 @@ svelte-eslint-parser@^0.16.0: eslint-visitor-keys "^3.0.0" espree "^9.0.0" +svelte@^3.46.6: + version "3.49.0" + resolved "https://registry.yarnpkg.com/svelte/-/svelte-3.49.0.tgz#5baee3c672306de1070c3b7888fc2204e36a4029" + integrity sha512-+lmjic1pApJWDfPCpUUTc1m8azDqYCG1JN9YEngrx/hUyIcFJo6VZhj0A1Ai0wqoHcEIuQy+e9tk+4uDgdtsFA== + svg-tags@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" @@ -10722,12 +10756,12 @@ sync-threads@^1.0.1: resolved "https://registry.yarnpkg.com/sync-threads/-/sync-threads-1.0.1.tgz#1e854ce579eaca0d0f1f0885a40bc2be6237b593" integrity sha512-hIdwt/c/e1ONnr2RJmfBxEAj/J6KQQWKdToF3Qw8ZNRsTNNteGkOe63rQy9I7J5UNlr8Yl0wkzIr9wgLY94x0Q== -synckit@^0.7.1: - version "0.7.1" - resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.7.1.tgz#9aa3a6c81f534ef940ad22fa9a3bae116850ead8" - integrity sha512-Cvv0Nzgs4Z0V6761qp4CU2+C15HRmnHaDd+sAtisbOnzIZ5wgl3ne076k28cHo+oY6eN/w0RNzRrf7CJz8dWJg== +synckit@^0.7.1, synckit@^0.7.2: + version "0.7.2" + resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.7.2.tgz#43c07b5a8101ee45355aebf0216895309fd32a6f" + integrity sha512-CSZRtSRZ8RhJGMtWyLRqlarmWPPlsgZJHtV6cz0VTHNOg+R7UBoE2eNPQmB5Qrhtk3RX2AAcJmVwMXFULVQSwg== dependencies: - "@pkgr/utils" "^2.1.0" + "@pkgr/utils" "^2.2.0" tslib "^2.4.0" tapable@^2.2.0: @@ -10883,10 +10917,10 @@ ts-jest@^28.0.5: semver "7.x" yargs-parser "^21.0.1" -ts-node@^10.8.1: - version "10.8.1" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.8.1.tgz#ea2bd3459011b52699d7e88daa55a45a1af4f066" - integrity sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g== +ts-node@^10.8.1, ts-node@^10.8.2: + version "10.8.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.8.2.tgz#3185b75228cef116bf82ffe8762594f54b2a23f2" + integrity sha512-LYdGnoGddf1D6v8REPtIH+5iq/gTDuZqv2/UJUU7tKjuEU8xVZorBM+buCGNjj+pGEud+sOoM4CX3/YzINpENA== dependencies: "@cspotcode/source-map-support" "^0.8.0" "@tsconfig/node10" "^1.0.7"