diff --git a/.circleci/config.yml b/.circleci/config.yml index 5d16baacbcf59..a2e0bc531656f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,7 +6,7 @@ executors: parameters: image: type: string - default: "18.0.0" + default: "22.13" gatsby_major: type: string default: "5" @@ -16,6 +16,10 @@ executors: GATSBY_CPU_COUNT: 2 COMPILER_OPTIONS: GATSBY_MAJOR=<< parameters.gatsby_major >> NODE_NO_WARNINGS: 1 + # See https://sharp.pixelplumbing.com/install/#custom-libvips + # libvips may or may not be installed in the CircleCI images we're using, but we + # don't want to use it regardless, for consistency (and because it can cause problems) + SHARP_IGNORE_GLOBAL_LIBVIPS: 1 aliases: e2e-executor-env: &e2e-executor-env @@ -28,12 +32,6 @@ aliases: environment: <<: *e2e-executor-env - restore_cache: &restore_cache - restore_cache: - name: Restore node_modules cache - keys: - - yarn-cypress-cache-{{ checksum "yarn.lock" }} - install_node_modules: &install_node_modules run: name: Install node modules @@ -49,13 +47,6 @@ aliases: name: Validate renovate-config command: (node scripts/renovate-config-generator.js && (git status --porcelain renovate.json5 | grep "M renovate.json5")) && (echo "Please run \"node scripts/renovate-config-generator.js\" to update renovate.json5" && exit 1) || npx -p renovate@31.28.5 renovate-config-validator . - persist_cache: &persist_cache - save_cache: - name: Save node modules cache - key: yarn-cypress-cache-{{ checksum "yarn.lock" }} - paths: - - ~/.cache - attach_to_bootstrap: &attach_to_bootstrap attach_workspace: at: ./ @@ -110,11 +101,48 @@ aliases: - master - /docs.+/ requires: - - lint - - typecheck - - unit_tests_node18 + - bootstrap-18.2.0 + + integration-test-workflow: &integration-test-workflow + filters: + branches: + ignore: + - master + - /docs.+/ + matrix: + parameters: + # TODO(serhalp): We test on 22.13 rather than the latest because there is an issue + # introduced in node.js 22.14.0 (not present in 22.13.1) and node.js 20.19.0 (not present in + # 20.18.3). It seems almost certainly to be caused by https://github.com/nodejs/node/pull/56106. + # I'm not sure yet if this is only a test issue or an actual race condition that could + # affect users - AFAICT the only manifestation is causing this test to fail: + # https://github.com/gatsbyjs/gatsby/blob/c3708b068abba3a26e5cf229d6d4dc5813884acd/integration-tests/ssr/__tests__/ssr.js#L102. + node_version: ["18.2.0", "22.13"] + requires: + - bootstrap-<< matrix.node_version >> commands: + restore_yarn_cache: + parameters: + node_version: + type: string + steps: + - restore_cache: + name: Restore node_modules cache + keys: + - yarn-cypress-cache-{{ checksum "yarn.lock" }}-<< parameters.node_version >> + + persist_yarn_cache: + parameters: + node_version: + type: string + steps: + - save_cache: + name: Save node modules cache + key: yarn-cypress-cache-{{ checksum "yarn.lock" }}-<< parameters.node_version >> + paths: + - ~/.cache + e2e-test: parameters: skip_file_change_test: @@ -140,9 +168,11 @@ commands: steps: - checkout # In case of failure, add these steps again. Cache probably got deleted - #- <<: *restore_cache + #- restore_yarn_cache: + # node_version: << parameters.node_version >> #- <<: *install_node_modules - #- <<: *persist_cache + #- persist_yarn_cache: + # node_version: << parameters.node_version >> - unless: condition: << parameters.skip_file_change_test >> steps: @@ -173,17 +203,24 @@ version: 2.1 jobs: bootstrap: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - checkout - run: ./scripts/assert-changed-files.sh "packages/*|(e2e|integration)-tests/*|.circleci/*|scripts/e2e-test.sh|yarn.lock" - # python 2 is not built in and node-gyp needs it to build lmdb - - run: sudo apt-get update && sudo apt-get install python -y - - <<: *restore_cache + # python is not built in and node-gyp needs it to build lmdb + - run: sudo apt-get update && sudo apt-get install -y python3 python-is-python3 + - restore_yarn_cache: + node_version: << parameters.node_version >> - <<: *install_node_modules - <<: *check_lockfile - <<: *validate_renovate - - <<: *persist_cache + - persist_yarn_cache: + node_version: << parameters.node_version >> - run: yarn bootstrap -- concurrency=2 # Persist the workspace again with all packages already built - persist_to_workspace: @@ -222,7 +259,22 @@ jobs: image: "18.2.0" <<: *test_template + unit_tests_node20: + executor: + name: node + image: "20.19" + <<: *test_template + + unit_tests_node22: + executor: + name: node + image: "22.13" + <<: *test_template + integration_tests_gatsby_source_wordpress: + parameters: + node_version: + type: string machine: image: "ubuntu-2204:2023.02.1" steps: @@ -230,65 +282,105 @@ jobs: command: | echo 'export NVM_DIR="$HOME/.nvm"' >> $BASH_ENV echo '[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"' >> $BASH_ENV - echo nvm install v18 >> $BASH_ENV - echo nvm alias default v18 >> $BASH_ENV + echo nvm install v<< parameters.node_version >> >> $BASH_ENV + echo nvm alias default v<< parameters.node_version >> >> $BASH_ENV - run: | node -v - run: npm i -g yarn@1.22.11 - e2e-test: test_path: integration-tests/gatsby-source-wordpress - integration_tests_node_manifest: - executor: node - steps: - - e2e-test: - test_path: integration-tests/node-manifest - integration_tests_long_term_caching: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/long-term-caching + test_command: yarn test integration_tests_cache_resilience: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/cache-resilience + test_command: yarn test integration_tests_gatsby_pipeline: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/gatsby-pipeline + test_command: yarn test integration_tests_gatsby_cli: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/gatsby-cli - trigger_pattern: packages/gatsby-cli/*|packages/gatsby/*|integration-tests/gatsby-cli/*|scripts/e2e-test.sh + test_command: yarn test integration_tests_structured_logging: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/structured-logging + test_command: yarn test integration_tests_artifacts: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/artifacts + test_command: yarn test integration_tests_ssr: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/ssr + test_command: yarn test integration_tests_images: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/images @@ -297,28 +389,48 @@ jobs: path: integration-tests/images/__diff_output__ integration_tests_functions: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/functions test_command: yarn test integration_tests_head_function_export: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/head-function-export test_command: yarn test integration_tests_esm_in_gatsby_files: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/esm-in-gatsby-files test_command: yarn test integration_tests_lmdb_regeneration: - executor: node + parameters: + node_version: + type: string + executor: + name: node + image: << parameters.node_version >> steps: - e2e-test: test_path: integration-tests/lmdb-regeneration @@ -535,8 +647,9 @@ jobs: steps: - checkout # jq is helpful for parsing json & python required for node-gyp to build lmdb - - run: sudo apt-get update && sudo apt-get install jq python -y - - <<: *restore_cache + - run: sudo apt-get update && sudo apt-get install -y jq python3 python-is-python3 + - restore_yarn_cache: + node_version: 18.0.0 - <<: *install_node_modules - run: yarn markdown - run: git config --global user.name "GatsbyJS Bot" @@ -547,13 +660,16 @@ jobs: executor: node steps: - checkout - - run: sudo apt-get update && sudo apt-get install jq python -y - - <<: *restore_cache + # python is not built in and node-gyp needs it to build lmdb + - run: sudo apt-get update && sudo apt-get install -y jq python3 python-is-python3 + - restore_yarn_cache: + node_version: 18.0.0 - <<: *install_node_modules - run: git config --global user.name "GatsbyJS Bot" - run: git config --global user.email "core-team@gatsbyjs.com" - run: node scripts/gatsby-changelog-generator/update-and-open-pr.js + # TODO(serhalp): Test Windows on Node.js 20 and 22? windows_unit_tests: parallelism: 4 executor: @@ -567,8 +683,8 @@ jobs: # Restoring cache takes as long as installing node modules, so skipping # - restore_cache: # keys: - # - yarn-packages-v2-{{ checksum "yarn.lock" }} - # - yarn-packages-v2- + # - yarn-packages-v2-{{ checksum "yarn.lock" }}-<< parameters.node_version >> + # - yarn-packages-v2-<< parameters.node_version >> - <<: *attach_to_bootstrap - run: @@ -655,59 +771,60 @@ workflows: build-test: jobs: - - bootstrap + - bootstrap: + name: "bootstrap-<< matrix.node_version >>" + matrix: + parameters: + node_version: ["18.2.0", "20.19", "22.13"] - lint - typecheck: requires: - - bootstrap + - bootstrap-18.2.0 - windows_unit_tests: <<: *ignore_docs requires: - - lint - - bootstrap + - bootstrap-18.2.0 - windows_adapters_smoke: requires: - # ideally we wait for windows unit tests here, but because those are flaky - # feedback loop would be not practical, so at least wait for linux unit tests - # to resemble setup for more robust E2E tests - - lint - - bootstrap - - unit_tests_node18 + - bootstrap-18.2.0 - unit_tests_node18: <<: *ignore_docs requires: - - lint - - typecheck - - bootstrap + - bootstrap-18.2.0 + - unit_tests_node20: + <<: *ignore_docs + requires: + - bootstrap-20.19 + - unit_tests_node22: + <<: *ignore_docs + requires: + - bootstrap-22.13 - integration_tests_gatsby_source_wordpress: - <<: *e2e-test-workflow - - integration_tests_node_manifest: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_long_term_caching: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_cache_resilience: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_gatsby_pipeline: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_structured_logging: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_artifacts: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_ssr: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_images: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_functions: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_head_function_export: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_esm_in_gatsby_files: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_lmdb_regeneration: - <<: *e2e-test-workflow + <<: *integration-test-workflow - integration_tests_gatsby_cli: - requires: - - bootstrap + <<: *integration-test-workflow - e2e_tests_pnp: <<: *e2e-test-workflow - e2e_tests_pnpm: diff --git a/.eslintignore b/.eslintignore index b97b3a4bfc442..c7c9b3f0fa00c 100644 --- a/.eslintignore +++ b/.eslintignore @@ -25,10 +25,10 @@ packages/gatsby-plugin-preload-fonts/prepare/*.js packages/gatsby/cache-dir/commonjs/**/* packages/gatsby-codemods/transforms packages/gatsby-source-graphql/batching -packages/gatsby-plugin-gatsby-cloud/components -packages/gatsby-plugin-gatsby-cloud/context -packages/gatsby-plugin-gatsby-cloud/models -packages/gatsby-plugin-gatsby-cloud/utils +deprecated-packages/gatsby-plugin-gatsby-cloud/components +deprecated-packages/gatsby-plugin-gatsby-cloud/context +deprecated-packages/gatsby-plugin-gatsby-cloud/models +deprecated-packages/gatsby-plugin-gatsby-cloud/utils packages/gatsby-plugin-preact/fast-refresh packages/gatsby-source-wordpress/test-site/** diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 6ff2d64e52060..659b59d8b3d7c 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -3,12 +3,6 @@ contact_links: - name: Gatsby Documentation url: https://www.gatsbyjs.com/docs/ about: Check out the Gatsby documentation for answers to common questions - - name: Gatsby Discord - url: https://gatsby.dev/discord - about: Ask questions, get help and discuss new things you're building with the Gatsby community - name: Gatsby Discussions url: https://github.com/gatsbyjs/gatsby/discussions about: Ask questions, request features & discuss RFCs - - name: AskGatsbyJS Twitter - url: https://twitter.com/AskGatsbyJS - about: The official Twitter account to ask questions and get help with Gatsby diff --git a/README.md b/README.md index 47caf1df6b910..22b56d3689b76 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@

- Gatsby is a free and open source framework based on React that helps developers build blazing fast websites and apps.
It combines the control and scalability of dynamically rendered sites with the speed of static-site generation, creating a whole new web of possibilities. + Gatsby is a free and open-source framework based on React that helps developers build blazing fast websites and apps.
It combines the control and scalability of dynamically rendered sites with the speed of static-site generation, creating a whole new web of possibilities.

@@ -34,9 +34,6 @@ PRs welcome! - - Follow @GatsbyJS -

@@ -52,9 +49,7 @@ · Contribute
- Support: Twitter, Discussions - & - Discord + Support: Discussions

Gatsby helps professional developers efficiently create maintainable, highly-performant, content-rich websites. @@ -160,6 +155,6 @@ Licensed under the [MIT License](./LICENSE). ## 💜 Thanks -Thanks go out to all our many contributors creating plugins, starters, videos, and blog posts. And a special appreciation for our community members helping with issues and PRs, or answering questions on Discord and GitHub Discussions. +Thanks go out to all our many contributors creating plugins, starters, videos, and blog posts. And a special appreciation for our community members helping with issues and PRs, or answering questions on GitHub Discussions. A big part of what makes Gatsby great is each and every one of you in the community. Your contributions enrich the Gatsby experience and make it better every day. diff --git a/packages/gatsby-plugin-gatsby-cloud/.babelrc b/deprecated-packages/gatsby-plugin-gatsby-cloud/.babelrc similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/.babelrc rename to deprecated-packages/gatsby-plugin-gatsby-cloud/.babelrc diff --git a/packages/gatsby-plugin-gatsby-cloud/.gitignore b/deprecated-packages/gatsby-plugin-gatsby-cloud/.gitignore similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/.gitignore rename to deprecated-packages/gatsby-plugin-gatsby-cloud/.gitignore diff --git a/packages/gatsby-plugin-gatsby-cloud/.npmignore b/deprecated-packages/gatsby-plugin-gatsby-cloud/.npmignore similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/.npmignore rename to deprecated-packages/gatsby-plugin-gatsby-cloud/.npmignore diff --git a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md b/deprecated-packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md similarity index 85% rename from packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md rename to deprecated-packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md index 874199c4d2e34..d6d658277dabe 100644 --- a/packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md +++ b/deprecated-packages/gatsby-plugin-gatsby-cloud/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.14.0/packages/gatsby-plugin-gatsby-cloud) (2024-11-06) +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.14.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) @@ -15,11 +15,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - disable telemetry [#39137](https://github.com/gatsbyjs/gatsby/issues/39137) ([1b1720b](https://github.com/gatsbyjs/gatsby/commit/1b1720bb75233661b30205000c4c3bff855d47c8)) -### [5.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.13.1/packages/gatsby-plugin-gatsby-cloud) (2024-01-23) +### [5.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.13.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2024-01-23) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.13.0/packages/gatsby-plugin-gatsby-cloud) (2023-12-18) +## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.13.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-12-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.13) @@ -27,17 +27,17 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Update gatsby-cloud-plugin README [#38479](https://github.com/gatsbyjs/gatsby/issues/38479) ([743cb95](https://github.com/gatsbyjs/gatsby/commit/743cb95f0a5d86d705881eac986c188cc5bc48b6)) -### [5.12.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.12.2/packages/gatsby-plugin-gatsby-cloud) (2023-10-26) +### [5.12.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.12.2/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-10-26) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -### [5.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.12.1/packages/gatsby-plugin-gatsby-cloud) (2023-09-15) +### [5.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.12.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-09-15) #### Other Changes - Update gatsby-cloud-plugin README [#38479](https://github.com/gatsbyjs/gatsby/issues/38479) [#38550](https://github.com/gatsbyjs/gatsby/issues/38550) ([dfcc546](https://github.com/gatsbyjs/gatsby/commit/dfcc546ad3cdf8769925b7d3407c4be68158ca64)) -## [5.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.12.0/packages/gatsby-plugin-gatsby-cloud) (2023-08-24) +## [5.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.12.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-08-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.12) @@ -45,19 +45,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency msw to ^1.2.2 for gatsby-plugin-gatsby-cloud [#38284](https://github.com/gatsbyjs/gatsby/issues/38284) ([edbbce5](https://github.com/gatsbyjs/gatsby/commit/edbbce5d159ab51d7af76fcbec5b79e412c41227)) -## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.11.0/packages/gatsby-plugin-gatsby-cloud) (2023-06-15) +## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.11.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-06-15) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.11) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.10.0/packages/gatsby-plugin-gatsby-cloud) (2023-05-16) +## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.10.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-05-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.10) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.9.0/packages/gatsby-plugin-gatsby-cloud) (2023-04-18) +## [5.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.9.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-04-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.9) @@ -70,19 +70,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update [dev] major dependencies for gatsby-plugin-gatsby-cloud (major) [#37882](https://github.com/gatsbyjs/gatsby/issues/37882) ([12778ee](https://github.com/gatsbyjs/gatsby/commit/12778ee1ec878354cdaf4fb25f3e5add97655988)) - update dependency node-fetch to ^2.6.9 for gatsby-plugin-gatsby-cloud [#37821](https://github.com/gatsbyjs/gatsby/issues/37821) ([f645e9e](https://github.com/gatsbyjs/gatsby/commit/f645e9e3a0f209309e113d180ecb633eec6735bd)) -## [5.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.8.0/packages/gatsby-plugin-gatsby-cloud) (2023-03-21) +## [5.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.8.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-03-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.8) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.7.0/packages/gatsby-plugin-gatsby-cloud) (2023-02-21) +## [5.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.7.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-02-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.7) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.6.0/packages/gatsby-plugin-gatsby-cloud) (2023-02-07) +## [5.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.6.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-02-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.6) @@ -94,7 +94,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update [dev] minor and patch dependencies for gatsby-plugin-gatsby-cloud [#37560](https://github.com/gatsbyjs/gatsby/issues/37560) ([4600dd3](https://github.com/gatsbyjs/gatsby/commit/4600dd3416fe20e0083e138b574f38afc619e418)) -## [5.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.5.0/packages/gatsby-plugin-gatsby-cloud) (2023-01-24) +## [5.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.5.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-01-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.5) @@ -102,7 +102,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Upgrade some non-breaking major versions [#37406](https://github.com/gatsbyjs/gatsby/issues/37406) ([2ea80c0](https://github.com/gatsbyjs/gatsby/commit/2ea80c02e464fe9306f6a1eccbb6c74983a76208)) -## [5.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.4.0/packages/gatsby-plugin-gatsby-cloud) (2023-01-10) +## [5.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.4.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2023-01-10) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.4) @@ -112,29 +112,29 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update [dev] minor and patch dependencies for gatsby-plugin-gatsby-cloud [#37385](https://github.com/gatsbyjs/gatsby/issues/37385) ([594886b](https://github.com/gatsbyjs/gatsby/commit/594886b23f11d19350eccc0f1e7d55abf9563780)) - Update README [#37243](https://github.com/gatsbyjs/gatsby/issues/37243) ([33bc518](https://github.com/gatsbyjs/gatsby/commit/33bc518f7321243240d7c2156b9d1e10e7fbc027)) -### [5.3.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.3.1/packages/gatsby-plugin-gatsby-cloud) (2022-12-14) +### [5.3.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.3.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-12-14) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.3.0/packages/gatsby-plugin-gatsby-cloud) (2022-12-13) +## [5.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.3.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-12-13) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.3) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.2.0/packages/gatsby-plugin-gatsby-cloud) (2022-11-25) +## [5.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.2.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-11-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.2) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.1.0/packages/gatsby-plugin-gatsby-cloud) (2022-11-22) +## [5.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.1.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-11-22) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.1) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [5.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.0.0/packages/gatsby-plugin-gatsby-cloud) (2022-11-08) +## [5.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@5.0.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-11-08) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.0) @@ -151,71 +151,71 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Update peerDeps [#36965](https://github.com/gatsbyjs/gatsby/issues/36965) ([b624442](https://github.com/gatsbyjs/gatsby/commit/b6244424fe8b724cbc23b80b2b4f5424cc2055a4)) - apply patches for v5 [#36796](https://github.com/gatsbyjs/gatsby/issues/36796) ([25f79b6](https://github.com/gatsbyjs/gatsby/commit/25f79b6c3719fdf09584ade620a05c66ba2a697c)) -### [4.24.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.24.1/packages/gatsby-plugin-gatsby-cloud) (2022-10-19) +### [4.24.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.24.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-10-19) #### Bug Fixes - Re-add constant LINK_REGEX [#36839](https://github.com/gatsbyjs/gatsby/issues/36839) [#36847](https://github.com/gatsbyjs/gatsby/issues/36847) ([d211a97](https://github.com/gatsbyjs/gatsby/commit/d211a972d3d761e3cc4f725458fcd2216b61e4c7)) -## [4.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.24.0/packages/gatsby-plugin-gatsby-cloud) (2022-09-27) +## [4.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.24.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-09-27) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.24) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -### [4.23.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.23.1/packages/gatsby-plugin-gatsby-cloud) (2022-09-23) +### [4.23.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.23.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-09-23) #### Features - add total page count ipc [#36668](https://github.com/gatsbyjs/gatsby/issues/36668) [#36679](https://github.com/gatsbyjs/gatsby/issues/36679) ([629a2f6](https://github.com/gatsbyjs/gatsby/commit/629a2f6154e035ed6ab6b01dd5fb78775cb921a1)) -## [4.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.23.0/packages/gatsby-plugin-gatsby-cloud) (2022-09-13) +## [4.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.23.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-09-13) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.23) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.22.0/packages/gatsby-plugin-gatsby-cloud) (2022-08-30) +## [4.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.22.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-08-30) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.22) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.21.0/packages/gatsby-plugin-gatsby-cloud) (2022-08-16) +## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.21.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-08-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.20.0/packages/gatsby-plugin-gatsby-cloud) (2022-08-02) +## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.20.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-08-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.19.0/packages/gatsby-plugin-gatsby-cloud) (2022-07-19) +## [4.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.19.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-07-19) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.19) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -### [4.18.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.18.1/packages/gatsby-plugin-gatsby-cloud) (2022-07-12) +### [4.18.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.18.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-07-12) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.18.0/packages/gatsby-plugin-gatsby-cloud) (2022-07-05) +## [4.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.18.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-07-05) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.18) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.17.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.17.0/packages/gatsby-plugin-gatsby-cloud) (2022-06-21) +## [4.17.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.17.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-06-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.17) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.16.0/packages/gatsby-plugin-gatsby-cloud) (2022-06-07) +## [4.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.16.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-06-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.16) @@ -223,7 +223,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - add note about auto installation [#35766](https://github.com/gatsbyjs/gatsby/issues/35766) ([1ea9358](https://github.com/gatsbyjs/gatsby/commit/1ea9358e1943f494608bf4523e3fda2f461560a0)) -## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.15.0/packages/gatsby-plugin-gatsby-cloud) (2022-05-24) +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.15.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-05-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.15) @@ -231,7 +231,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Remove preview UI [#35586](https://github.com/gatsbyjs/gatsby/issues/35586) ([e3d57c0](https://github.com/gatsbyjs/gatsby/commit/e3d57c0fb8ab8a89b29fd613a519340574b1239a)) -## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.14.0/packages/gatsby-plugin-gatsby-cloud) (2022-05-10) +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.14.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-05-10) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14) @@ -252,7 +252,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update testing library [#35549](https://github.com/gatsbyjs/gatsby/issues/35549) ([dadcf29](https://github.com/gatsbyjs/gatsby/commit/dadcf2981766dbac1e299fe3562bca3540f4cc60)) -## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.13.0/packages/gatsby-plugin-gatsby-cloud) (2022-04-26) +## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.13.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-04-26) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.13) @@ -261,11 +261,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - don't add `undefined` to preload path if assetPrefix is falsy fix [#35400](https://github.com/gatsbyjs/gatsby/issues/35400) ([68aabc8](https://github.com/gatsbyjs/gatsby/commit/68aabc8f62a83d3109d8a7df6cef8ff6a3eb5802)) - use assetPrefix in preload headers ([912cd00](https://github.com/gatsbyjs/gatsby/commit/912cd003f90601c120fbaf30bb8057f4fac0fcd3)) -### [4.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.12.1/packages/gatsby-plugin-gatsby-cloud) (2022-04-13) +### [4.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.12.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-04-13) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.12.0/packages/gatsby-plugin-gatsby-cloud) (2022-04-12) +## [4.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.12.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-04-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.12) @@ -277,11 +277,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update testing library [#35304](https://github.com/gatsbyjs/gatsby/issues/35304) ([51c8641](https://github.com/gatsbyjs/gatsby/commit/51c8641cecf273a77d2a615b0fea5d307a461ba9)) -### [4.11.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.11.1/packages/gatsby-plugin-gatsby-cloud) (2022-03-31) +### [4.11.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.11.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-03-31) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.11.0/packages/gatsby-plugin-gatsby-cloud) (2022-03-29) +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.11.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-03-29) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.11) @@ -293,11 +293,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - replace all uses of gatsbyjs.org with gatsbyjs.com [#35101](https://github.com/gatsbyjs/gatsby/issues/35101) ([16cff41](https://github.com/gatsbyjs/gatsby/commit/16cff413e154dc4e74fc5be631d52c76273e5cbc)) -### [4.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.10.1/packages/gatsby-plugin-gatsby-cloud) (2022-03-23) +### [4.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.10.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-03-23) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.10.0/packages/gatsby-plugin-gatsby-cloud) (2022-03-16) +## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.10.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-03-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.10) @@ -305,11 +305,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Added more build status messages [#35103](https://github.com/gatsbyjs/gatsby/issues/35103) [#1](https://github.com/gatsbyjs/gatsby/issues/1) [#2](https://github.com/gatsbyjs/gatsby/issues/2) [#3](https://github.com/gatsbyjs/gatsby/issues/3) [#4](https://github.com/gatsbyjs/gatsby/issues/4) [#4](https://github.com/gatsbyjs/gatsby/issues/4) [#5](https://github.com/gatsbyjs/gatsby/issues/5) ([79d5463](https://github.com/gatsbyjs/gatsby/commit/79d546325e2f27222ae502e8910e6e74d0f5b6e4)) -### [4.9.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.9.1/packages/gatsby-plugin-gatsby-cloud) (2022-03-09) +### [4.9.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.9.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-03-09) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.9.0/packages/gatsby-plugin-gatsby-cloud) (2022-03-01) +## [4.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.9.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-03-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.9) @@ -318,15 +318,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency @testing-library/jest-dom to ^5.16.2 [#34956](https://github.com/gatsbyjs/gatsby/issues/34956) ([d30979d](https://github.com/gatsbyjs/gatsby/commit/d30979dff6e78334626d7e4a7546849329da4525)) - Format changelog files ([088f23b](https://github.com/gatsbyjs/gatsby/commit/088f23b084b67f746a383e06e9216cef83270317)) -### [4.8.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.8.2/packages/gatsby-plugin-gatsby-cloud) (2022-03-01) +### [4.8.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.8.2/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-03-01) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -### [4.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.8.1/packages/gatsby-plugin-gatsby-cloud) (2022-02-25) +### [4.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.8.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-02-25) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.8.0/packages/gatsby-plugin-gatsby-cloud) (2022-02-22) +## [4.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.8.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-02-22) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.8) @@ -338,7 +338,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Force click-only behavior for SUCCESS and ERROR statuses. [#34725](https://github.com/gatsbyjs/gatsby/issues/34725) ([540dfdf](https://github.com/gatsbyjs/gatsby/commit/540dfdf910c39cea122a34ecdb265fb2117cc75b)) -## [4.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.7.0/packages/gatsby-plugin-gatsby-cloud) (2022-02-08) +## [4.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.7.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-02-08) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.7) @@ -361,7 +361,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Fix polling logic for non eager redirected urls. Fix [#34712](https://github.com/gatsbyjs/gatsby/issues/34712) ([4b802ad](https://github.com/gatsbyjs/gatsby/commit/4b802ad4c1c1ff0aa141c6ab4ca179f0c95f8482)) -## [4.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.6.0/packages/gatsby-plugin-gatsby-cloud) (2022-01-25) +## [4.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.6.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-01-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.6) @@ -373,15 +373,15 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - preview 2.0 UI changes [#34440](https://github.com/gatsbyjs/gatsby/issues/34440) ([db188dc](https://github.com/gatsbyjs/gatsby/commit/db188dc5dbcc9bf4c8b67e35b934d247a85766ff)) -### [4.5.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.5.2/packages/gatsby-plugin-gatsby-cloud) (2022-01-17) +### [4.5.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.5.2/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-01-17) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -### [4.5.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.5.1/packages/gatsby-plugin-gatsby-cloud) (2022-01-12) +### [4.5.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.5.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-01-12) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.5.0/packages/gatsby-plugin-gatsby-cloud) (2022-01-11) +## [4.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.5.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2022-01-11) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.5) @@ -395,7 +395,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency @testing-library/jest-dom to ^5.16.1 [#34364](https://github.com/gatsbyjs/gatsby/issues/34364) ([5410274](https://github.com/gatsbyjs/gatsby/commit/5410274dfe21c09f94dabc6a17e2d2c3c3144ce6)) - upgrade jest [#33277](https://github.com/gatsbyjs/gatsby/issues/33277) ([34cb202](https://github.com/gatsbyjs/gatsby/commit/34cb202d9c8c202f082edb03c4cc1815eb81abe1)) -## [4.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.4.0/packages/gatsby-plugin-gatsby-cloud) (2021-12-14) +## [4.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.4.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-12-14) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.4) @@ -407,13 +407,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update testing library [#34145](https://github.com/gatsbyjs/gatsby/issues/34145) ([e1babca](https://github.com/gatsbyjs/gatsby/commit/e1babca2a48d301ef7dde845231cfe79984fd54c)) -## [4.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.3.0/packages/gatsby-plugin-gatsby-cloud) (2021-12-01) +## [4.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.3.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-12-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.3) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.2.0/packages/gatsby-plugin-gatsby-cloud) (2021-11-16) +## [4.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.2.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-11-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.2) @@ -426,19 +426,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency node-fetch to ^2.6.6 for gatsby-plugin-gatsby-cloud [#33755](https://github.com/gatsbyjs/gatsby/issues/33755) ([ef1fac6](https://github.com/gatsbyjs/gatsby/commit/ef1fac618fbab88cc39528dee3adef927532d27b)) - update testing library [#33778](https://github.com/gatsbyjs/gatsby/issues/33778) ([93fabb5](https://github.com/gatsbyjs/gatsby/commit/93fabb5eb7d6f4ae6cb9cef05ecf2ab81c417d6a)) -### [4.1.3](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.3/packages/gatsby-plugin-gatsby-cloud) (2021-11-15) +### [4.1.3](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.3/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-11-15) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -### [4.1.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.2/packages/gatsby-plugin-gatsby-cloud) (2021-11-11) +### [4.1.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.2/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-11-11) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -### [4.1.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.1/packages/gatsby-plugin-gatsby-cloud) (2021-11-10) +### [4.1.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-11-10) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [4.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.0/packages/gatsby-plugin-gatsby-cloud) (2021-11-02) +## [4.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.1.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-11-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.1) @@ -451,7 +451,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Properly set the pathPrefix and assetPrefix in the pluginData fix [#33667](https://github.com/gatsbyjs/gatsby/issues/33667) ([168351e](https://github.com/gatsbyjs/gatsby/commit/168351ef9b02bc51c0db7bc1233969c7b278c435)) -## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.0.0/packages/gatsby-plugin-gatsby-cloud) (2021-10-21) +## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@4.0.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-10-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.0) @@ -469,13 +469,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency node-fetch to ^2.6.5 for gatsby-plugin-gatsby-cloud [#33355](https://github.com/gatsbyjs/gatsby/issues/33355) ([324947a](https://github.com/gatsbyjs/gatsby/commit/324947a106022d2f9d455f5bd5f829f51ab030b8)) - move to DSG instead of DSR [#33189](https://github.com/gatsbyjs/gatsby/issues/33189) ([497d507](https://github.com/gatsbyjs/gatsby/commit/497d507037f601127254bde5d18584c226a38662)) -### [3.2.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.2.1/packages/gatsby-plugin-gatsby-cloud) (2021-10-28) +### [3.2.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.2.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-10-28) #### Other Changes - Properly set the pathPrefix and assetPrefix in the pluginData fix [#33667](https://github.com/gatsbyjs/gatsby/issues/33667) fix [#33702](https://github.com/gatsbyjs/gatsby/issues/33702) ([6bfd0f1](https://github.com/gatsbyjs/gatsby/commit/6bfd0f17dcf1bda2dab426d3a5aa0dcaa2d0d661)) -## [3.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.2.0/packages/gatsby-plugin-gatsby-cloud) (2021-09-18) +## [3.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.2.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-09-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) @@ -498,7 +498,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - fix typo: asterix -> asterisk fix [#33135](https://github.com/gatsbyjs/gatsby/issues/33135) ([81f35ff](https://github.com/gatsbyjs/gatsby/commit/81f35ffaa56d4e093bcfb2f46e590a2ea2ca43a8)) -## [3.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.1.0/packages/gatsby-plugin-gatsby-cloud) (2021-09-01) +## [3.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.1.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) @@ -517,7 +517,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - re-generate changelogs [#32886](https://github.com/gatsbyjs/gatsby/issues/32886) ([417df15](https://github.com/gatsbyjs/gatsby/commit/417df15230be368a9db91f2ad1a9bc0442733177)) -## [3.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.0.0/packages/gatsby-plugin-gatsby-cloud) (2021-08-18) +## [3.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@3.0.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-08-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.12) @@ -534,7 +534,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update formatting & linting [#32626](https://github.com/gatsbyjs/gatsby/issues/32626) ([4a765b5](https://github.com/gatsbyjs/gatsby/commit/4a765b5c62208d58f0bd7fd59558160c0b9feed3)) -## [2.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.11.0/packages/gatsby-plugin-gatsby-cloud) (2021-08-04) +## [2.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.11.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-08-04) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.11) @@ -542,13 +542,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Use fs instead of require to get webpack stats because require is cached [#32535](https://github.com/gatsbyjs/gatsby/issues/32535) ([da35203](https://github.com/gatsbyjs/gatsby/commit/da35203b9234f608a4f34b7091bc2e3d651c260e)) -### [2.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.10.1/packages/gatsby-plugin-gatsby-cloud) (2021-07-29) +### [2.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.10.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-07-29) #### Bug Fixes - Use fs instead of require to get webpack stats because require is cached [#32535](https://github.com/gatsbyjs/gatsby/issues/32535) [#32536](https://github.com/gatsbyjs/gatsby/issues/32536) ([b5afed6](https://github.com/gatsbyjs/gatsby/commit/b5afed6926c537f78e68f1e9ebfa038798634ba4)) -## [2.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.10.0/packages/gatsby-plugin-gatsby-cloud) (2021-07-20) +## [2.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.10.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-07-20) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.10) @@ -561,13 +561,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update testing library [#32228](https://github.com/gatsbyjs/gatsby/issues/32228) ([7e497c3](https://github.com/gatsbyjs/gatsby/commit/7e497c3cbffcbe1e104c2ef5c7146ce64f82adb3)) - update babel monorepo [#32238](https://github.com/gatsbyjs/gatsby/issues/32238) ([466d4c0](https://github.com/gatsbyjs/gatsby/commit/466d4c087bbc96abb942a02c67243bcc9a4f2a0a)) -### [2.9.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.9.1/packages/gatsby-plugin-gatsby-cloud) (2021-07-13) +### [2.9.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.9.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-07-13) #### Bug Fixes - lower peak memory usage by stream writing the \_header.json file [#32337](https://github.com/gatsbyjs/gatsby/issues/32337) [#32349](https://github.com/gatsbyjs/gatsby/issues/32349) ([8521f40](https://github.com/gatsbyjs/gatsby/commit/8521f40711c23540b379691a99ebe7c6d81ac606)) -## [2.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.9.0/packages/gatsby-plugin-gatsby-cloud) (2021-07-07) +## [2.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.9.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-07-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.9) @@ -575,7 +575,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - add gatsby-telemetry as a dependency [#32047](https://github.com/gatsbyjs/gatsby/issues/32047) ([4ba8c2c](https://github.com/gatsbyjs/gatsby/commit/4ba8c2cae3eb9ece767e65c549d033ecb78b2d7e)) -### [2.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.8.1/packages/gatsby-plugin-gatsby-cloud) (2021-06-22) +### [2.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.8.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-06-22) #### Bug Fixes @@ -585,7 +585,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - set gatsby-telemetry to ^2.8.0 ([25be051](https://github.com/gatsbyjs/gatsby/commit/25be05120d18581aa396795e31550d3ee6dc54da)) -## [2.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.8.0/packages/gatsby-plugin-gatsby-cloud) (2021-06-23) +## [2.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.8.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-06-23) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.8) @@ -603,13 +603,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - bump babel minor [#31857](https://github.com/gatsbyjs/gatsby/issues/31857) ([7d42e8d](https://github.com/gatsbyjs/gatsby/commit/7d42e8d866e46e9c39838d812d080d06433f7060)) - update minor and patch for gatsby-plugin-gatsby-cloud [#31702](https://github.com/gatsbyjs/gatsby/issues/31702) ([0a1e7fc](https://github.com/gatsbyjs/gatsby/commit/0a1e7fcfe77ba340225a0156861d5e8b6b7e8fc6)) -### [2.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.7.1/packages/gatsby-plugin-gatsby-cloud) (2021-06-10) +### [2.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.7.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-06-10) #### Chores - bump babel minor [#31857](https://github.com/gatsbyjs/gatsby/issues/31857) [#31859](https://github.com/gatsbyjs/gatsby/issues/31859) ([8636025](https://github.com/gatsbyjs/gatsby/commit/863602567930a39142ed33d9d1f1813b7dec8686)) -## [2.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.7.0/packages/gatsby-plugin-gatsby-cloud) (2021-06-09) +## [2.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.7.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-06-09) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.7) @@ -635,14 +635,14 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - fix content wrapping style issue fix [#31527](https://github.com/gatsbyjs/gatsby/issues/31527) ([968db84](https://github.com/gatsbyjs/gatsby/commit/968db84c24698274fed41a41197992fd7fa69a73)) -### [2.6.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.6.1/packages/gatsby-plugin-gatsby-cloud) (2021-05-27) +### [2.6.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.6.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-05-27) #### Bug Fixes - add componentChunkName to components list so don't need to loop over pages [#31547](https://github.com/gatsbyjs/gatsby/issues/31547) [#31606](https://github.com/gatsbyjs/gatsby/issues/31606) ([1f26765](https://github.com/gatsbyjs/gatsby/commit/1f2676513a22e3acf283e6b2ef0cf5797c17818b)) - fix cloud being bundled fix [#31604](https://github.com/gatsbyjs/gatsby/issues/31604) fix [#31607](https://github.com/gatsbyjs/gatsby/issues/31607) ([9bac047](https://github.com/gatsbyjs/gatsby/commit/9bac04742caaa41cb418d4d55c9583af90305179)) -## [2.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.6.0/packages/gatsby-plugin-gatsby-cloud) (2021-05-25) +## [2.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.6.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-05-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.6) @@ -658,7 +658,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - fix content wrapping style issue fix [#31527](https://github.com/gatsbyjs/gatsby/issues/31527) fix [#31576](https://github.com/gatsbyjs/gatsby/issues/31576) ([36f50f1](https://github.com/gatsbyjs/gatsby/commit/36f50f1e756fcf4568cbefb8cfcec8444b5f2336)) -## [2.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.5.0/packages/gatsby-plugin-gatsby-cloud) (2021-05-12) +## [2.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.5.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-05-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.5) @@ -666,13 +666,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Copying manifest [#31092](https://github.com/gatsbyjs/gatsby/issues/31092) ([a9ad91f](https://github.com/gatsbyjs/gatsby/commit/a9ad91f379d20992e1e92ca2a672f8748d05668f)) -### [2.4.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.4.1/packages/gatsby-plugin-gatsby-cloud) (2021-04-28) +### [2.4.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.4.1/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-04-28) #### Bug Fixes - Copying manifest [#31092](https://github.com/gatsbyjs/gatsby/issues/31092) [#31094](https://github.com/gatsbyjs/gatsby/issues/31094) ([9fbbde1](https://github.com/gatsbyjs/gatsby/commit/9fbbde1f279f5875519df86a0d41b3faa6ba8868)) -## [2.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.4.0/packages/gatsby-plugin-gatsby-cloud) (2021-04-28) +## [2.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.4.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-04-28) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.4) @@ -685,7 +685,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Stop deleting the index.js on publish ([4747793](https://github.com/gatsbyjs/gatsby/commit/47477934972fa554fb6c392d6c74cb6175ee8226)) -## [2.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.3.0/packages/gatsby-plugin-gatsby-cloud) (2021-04-14) +## [2.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.3.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-04-14) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.3) @@ -693,13 +693,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Add missing index.js (so the plugin can be resolved in workspaces) resolved [#30761](https://github.com/gatsbyjs/gatsby/issues/30761) ([4336d04](https://github.com/gatsbyjs/gatsby/commit/4336d04005745fe8de2defd8bba0b93380f04359)) -## [2.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.2.0/packages/gatsby-plugin-gatsby-cloud) (2021-03-30) +## [2.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.2.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-03-30) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.2) **Note:** Version bump only for package gatsby-plugin-gatsby-cloud -## [2.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.1.0/packages/gatsby-plugin-gatsby-cloud) (2021-03-16) +## [2.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-gatsby-cloud@2.1.0/deprecated-packages/gatsby-plugin-gatsby-cloud) (2021-03-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.1) diff --git a/packages/gatsby-plugin-gatsby-cloud/README.md b/deprecated-packages/gatsby-plugin-gatsby-cloud/README.md similarity index 97% rename from packages/gatsby-plugin-gatsby-cloud/README.md rename to deprecated-packages/gatsby-plugin-gatsby-cloud/README.md index afd57893a8d42..6e13eeb46ee33 100644 --- a/packages/gatsby-plugin-gatsby-cloud/README.md +++ b/deprecated-packages/gatsby-plugin-gatsby-cloud/README.md @@ -141,7 +141,7 @@ Redirect rules are automatically added for [client only paths](https://www.gatsb If those rules are conflicting with custom rules or if you want to have more control over them you can disable them in [configuration](#configuration) by setting `generateMatchPathRewrites` to `false`. -An asterisk, `*`, will match anything that follows. i.e. `/packages/gatsby-plugin-gatsby-cloud/` will be redirected to `/plugins/gatsby-plugin-gatsby-cloud/`. +An asterisk, `*`, will match anything that follows. i.e. `/deprecated-packages/gatsby-plugin-gatsby-cloud/` will be redirected to `/plugins/gatsby-plugin-gatsby-cloud/`. ### HTTP Strict Transport Security diff --git a/packages/gatsby-plugin-gatsby-cloud/package.json b/deprecated-packages/gatsby-plugin-gatsby-cloud/package.json similarity index 88% rename from packages/gatsby-plugin-gatsby-cloud/package.json rename to deprecated-packages/gatsby-plugin-gatsby-cloud/package.json index e6369f53f4d31..eecdf1c88f9ec 100644 --- a/packages/gatsby-plugin-gatsby-cloud/package.json +++ b/deprecated-packages/gatsby-plugin-gatsby-cloud/package.json @@ -22,7 +22,7 @@ "del-cli": "^5.0.0", "msw": "^1.2.2" }, - "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-gatsby-cloud#readme", + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/deprecated-packages/gatsby-plugin-gatsby-cloud#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -38,7 +38,7 @@ "repository": { "type": "git", "url": "https://github.com/gatsbyjs/gatsby.git", - "directory": "packages/gatsby-plugin-gatsby-cloud" + "directory": "deprecated-packages/gatsby-plugin-gatsby-cloud" }, "sideEffects": false, "scripts": { diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/build-headers-program.js.snap b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/build-headers-program.js.snap similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/build-headers-program.js.snap rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/build-headers-program.js.snap diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/create-redirects.js.snap b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/create-redirects.js.snap similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/create-redirects.js.snap rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/__snapshots__/create-redirects.js.snap diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/build-headers-program.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/build-headers-program.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/build-headers-program.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/build-headers-program.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-redirects.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-redirects.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-redirects.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-redirects.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-site-config.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-site-config.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-site-config.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/create-site-config.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/handlers.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/handlers.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/handlers.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/handlers.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/server.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/server.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/server.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/server.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/__tests__/routes.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/routes.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/__tests__/routes.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/routes.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/build-headers-program.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/build-headers-program.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/build-headers-program.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/build-headers-program.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/constants.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/constants.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/constants.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/constants.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/copy-functions-manifest.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/copy-functions-manifest.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/copy-functions-manifest.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/copy-functions-manifest.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/create-redirects.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/create-redirects.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/create-redirects.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/create-redirects.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/create-site-config.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/create-site-config.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/create-site-config.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/create-site-config.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/gatsby-browser.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/gatsby-browser.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/gatsby-browser.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/gatsby-browser.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/gatsby-node.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/gatsby-node.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/gatsby-node.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/gatsby-node.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/gatsby-ssr.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/gatsby-ssr.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/gatsby-ssr.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/gatsby-ssr.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/index.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/index.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/index.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/index.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/ipc.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/ipc.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/ipc.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/ipc.js diff --git a/packages/gatsby-plugin-gatsby-cloud/src/plugin-data.js b/deprecated-packages/gatsby-plugin-gatsby-cloud/src/plugin-data.js similarity index 100% rename from packages/gatsby-plugin-gatsby-cloud/src/plugin-data.js rename to deprecated-packages/gatsby-plugin-gatsby-cloud/src/plugin-data.js diff --git a/packages/gatsby-telemetry/.babelrc b/deprecated-packages/gatsby-telemetry/.babelrc similarity index 100% rename from packages/gatsby-telemetry/.babelrc rename to deprecated-packages/gatsby-telemetry/.babelrc diff --git a/packages/gatsby-telemetry/.gitignore b/deprecated-packages/gatsby-telemetry/.gitignore similarity index 100% rename from packages/gatsby-telemetry/.gitignore rename to deprecated-packages/gatsby-telemetry/.gitignore diff --git a/packages/gatsby-telemetry/CHANGELOG.md b/deprecated-packages/gatsby-telemetry/CHANGELOG.md similarity index 91% rename from packages/gatsby-telemetry/CHANGELOG.md rename to deprecated-packages/gatsby-telemetry/CHANGELOG.md index c581dd9c6b5d2..9c7b815fa1ef2 100644 --- a/packages/gatsby-telemetry/CHANGELOG.md +++ b/deprecated-packages/gatsby-telemetry/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.14.0/packages/gatsby-telemetry) (2024-11-06) +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.14.0/deprecated-packages/gatsby-telemetry) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) @@ -15,11 +15,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - disable telemetry [#39137](https://github.com/gatsbyjs/gatsby/issues/39137) ([1b1720b](https://github.com/gatsbyjs/gatsby/commit/1b1720bb75233661b30205000c4c3bff855d47c8)) -### [4.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.13.1/packages/gatsby-telemetry) (2024-01-23) +### [4.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.13.1/deprecated-packages/gatsby-telemetry) (2024-01-23) **Note:** Version bump only for package gatsby-telemetry -## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.13.0/packages/gatsby-telemetry) (2023-12-18) +## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.13.0/deprecated-packages/gatsby-telemetry) (2023-12-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.13) @@ -27,11 +27,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency rimraf to ^5.0.5 for gatsby-telemetry [#38597](https://github.com/gatsbyjs/gatsby/issues/38597) ([0faf0fe](https://github.com/gatsbyjs/gatsby/commit/0faf0fe8ba57473f16dae13c151810e6757822ee)) -### [4.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.12.1/packages/gatsby-telemetry) (2023-10-26) +### [4.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.12.1/deprecated-packages/gatsby-telemetry) (2023-10-26) **Note:** Version bump only for package gatsby-telemetry -## [4.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.12.0/packages/gatsby-telemetry) (2023-08-24) +## [4.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.12.0/deprecated-packages/gatsby-telemetry) (2023-08-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.12) @@ -39,7 +39,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update typescript [#38324](https://github.com/gatsbyjs/gatsby/issues/38324) ([5d0d7c1](https://github.com/gatsbyjs/gatsby/commit/5d0d7c12552fa7570bad2002806bca3d18f923de)) -## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.11.0/packages/gatsby-telemetry) (2023-06-15) +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.11.0/deprecated-packages/gatsby-telemetry) (2023-06-15) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.11) @@ -52,7 +52,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency rimraf to ^5.0.1 for gatsby-telemetry [#38145](https://github.com/gatsbyjs/gatsby/issues/38145) ([28d2ba3](https://github.com/gatsbyjs/gatsby/commit/28d2ba31fed2d86bba5a4c1d8c85facd06bf84e1)) -## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.10.0/packages/gatsby-telemetry) (2023-05-16) +## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.10.0/deprecated-packages/gatsby-telemetry) (2023-05-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.10) @@ -60,7 +60,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency rimraf to v5 for gatsby-telemetry [#38041](https://github.com/gatsbyjs/gatsby/issues/38041) ([c3e6a79](https://github.com/gatsbyjs/gatsby/commit/c3e6a7986600f09e1bf6bec558b950f57fd44f4a)) -## [4.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.9.0/packages/gatsby-telemetry) (2023-04-18) +## [4.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.9.0/deprecated-packages/gatsby-telemetry) (2023-04-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.9) @@ -75,19 +75,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update typescript [#37848](https://github.com/gatsbyjs/gatsby/issues/37848) ([9f92796](https://github.com/gatsbyjs/gatsby/commit/9f92796070b0e73fa92089af93de376c9be9021e)) - update dependency rimraf to v4 for gatsby-telemetry [#37900](https://github.com/gatsbyjs/gatsby/issues/37900) ([617a3d4](https://github.com/gatsbyjs/gatsby/commit/617a3d4e87c1ec061bc877173b158cdcb64f367d)) -## [4.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.8.0/packages/gatsby-telemetry) (2023-03-21) +## [4.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.8.0/deprecated-packages/gatsby-telemetry) (2023-03-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.8) **Note:** Version bump only for package gatsby-telemetry -## [4.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.7.0/packages/gatsby-telemetry) (2023-02-21) +## [4.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.7.0/deprecated-packages/gatsby-telemetry) (2023-02-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.7) **Note:** Version bump only for package gatsby-telemetry -## [4.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.6.0/packages/gatsby-telemetry) (2023-02-07) +## [4.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.6.0/deprecated-packages/gatsby-telemetry) (2023-02-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.6) @@ -100,7 +100,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update typescript [#37596](https://github.com/gatsbyjs/gatsby/issues/37596) ([4f1d1f2](https://github.com/gatsbyjs/gatsby/commit/4f1d1f260472d7768b57960b1e274c8755ca5a67)) -## [4.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.5.0/packages/gatsby-telemetry) (2023-01-24) +## [4.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.5.0/deprecated-packages/gatsby-telemetry) (2023-01-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.5) @@ -108,7 +108,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Upgrade some non-breaking major versions [#37406](https://github.com/gatsbyjs/gatsby/issues/37406) ([2ea80c0](https://github.com/gatsbyjs/gatsby/commit/2ea80c02e464fe9306f6a1eccbb6c74983a76208)) -## [4.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.4.0/packages/gatsby-telemetry) (2023-01-10) +## [4.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.4.0/deprecated-packages/gatsby-telemetry) (2023-01-10) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.4) @@ -116,11 +116,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#37386](https://github.com/gatsbyjs/gatsby/issues/37386) ([b941876](https://github.com/gatsbyjs/gatsby/commit/b94187633d94d0f0071b38ffe93380dd802ec70f)) -### [4.3.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.3.1/packages/gatsby-telemetry) (2022-12-14) +### [4.3.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.3.1/deprecated-packages/gatsby-telemetry) (2022-12-14) **Note:** Version bump only for package gatsby-telemetry -## [4.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.3.0/packages/gatsby-telemetry) (2022-12-13) +## [4.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.3.0/deprecated-packages/gatsby-telemetry) (2022-12-13) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.3) @@ -128,19 +128,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.9.3 [#37192](https://github.com/gatsbyjs/gatsby/issues/37192) ([204ed0e](https://github.com/gatsbyjs/gatsby/commit/204ed0e220eb9c1c5cdec692e82bce8e3e82e915)) -## [4.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.2.0/packages/gatsby-telemetry) (2022-11-25) +## [4.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.2.0/deprecated-packages/gatsby-telemetry) (2022-11-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.2) **Note:** Version bump only for package gatsby-telemetry -## [4.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.1.0/packages/gatsby-telemetry) (2022-11-22) +## [4.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.1.0/deprecated-packages/gatsby-telemetry) (2022-11-22) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.1) **Note:** Version bump only for package gatsby-telemetry -## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.0.0/packages/gatsby-telemetry) (2022-11-08) +## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@4.0.0/deprecated-packages/gatsby-telemetry) (2022-11-08) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.0) @@ -148,7 +148,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - apply patches for v5 [#36796](https://github.com/gatsbyjs/gatsby/issues/36796) ([25f79b6](https://github.com/gatsbyjs/gatsby/commit/25f79b6c3719fdf09584ade620a05c66ba2a697c)) -## [3.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.24.0/packages/gatsby-telemetry) (2022-09-27) +## [3.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.24.0/deprecated-packages/gatsby-telemetry) (2022-09-27) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.24) @@ -156,13 +156,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Bump git-up to v7 [#36652](https://github.com/gatsbyjs/gatsby/issues/36652) ([281590c](https://github.com/gatsbyjs/gatsby/commit/281590cdea3a1987253df44551b38fa125f5d329)) -## [3.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.23.0/packages/gatsby-telemetry) (2022-09-13) +## [3.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.23.0/deprecated-packages/gatsby-telemetry) (2022-09-13) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.23) **Note:** Version bump only for package gatsby-telemetry -## [3.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.22.0/packages/gatsby-telemetry) (2022-08-30) +## [3.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.22.0/deprecated-packages/gatsby-telemetry) (2022-08-30) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.22) @@ -170,7 +170,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Remove unused deps [#36368](https://github.com/gatsbyjs/gatsby/issues/36368) ([8bad1a7](https://github.com/gatsbyjs/gatsby/commit/8bad1a7a612c121fd4c8965c76cf7a0d87fbc3fa)) -## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.21.0/packages/gatsby-telemetry) (2022-08-16) +## [3.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.21.0/deprecated-packages/gatsby-telemetry) (2022-08-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21) @@ -178,7 +178,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - upgrade git-up [#36358](https://github.com/gatsbyjs/gatsby/issues/36358) ([f2f0acf](https://github.com/gatsbyjs/gatsby/commit/f2f0acf0f8c40312a4ba7988ffa5265eb892e9d2)) -## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.20.0/packages/gatsby-telemetry) (2022-08-02) +## [3.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.20.0/deprecated-packages/gatsby-telemetry) (2022-08-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20) @@ -186,7 +186,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.7.4 [#36030](https://github.com/gatsbyjs/gatsby/issues/36030) ([94a3264](https://github.com/gatsbyjs/gatsby/commit/94a32647a8c45de620d2efe99310805910586c8a)) -## [3.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.19.0/packages/gatsby-telemetry) (2022-07-19) +## [3.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.19.0/deprecated-packages/gatsby-telemetry) (2022-07-19) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.19) @@ -194,11 +194,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Update READMEs for better instructions ([0890a5c](https://github.com/gatsbyjs/gatsby/commit/0890a5cf2c881b49193113a1e1bd5fe13a2c328f)) -### [3.18.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.18.1/packages/gatsby-telemetry) (2022-07-12) +### [3.18.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.18.1/deprecated-packages/gatsby-telemetry) (2022-07-12) **Note:** Version bump only for package gatsby-telemetry -## [3.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.18.0/packages/gatsby-telemetry) (2022-07-05) +## [3.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.18.0/deprecated-packages/gatsby-telemetry) (2022-07-05) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.18) @@ -206,13 +206,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency @turist/fetch to ^7.2.0 for gatsby-telemetry [#34986](https://github.com/gatsbyjs/gatsby/issues/34986) ([0767994](https://github.com/gatsbyjs/gatsby/commit/076799482a84acb25a717e7b356261edff43a5ad)) -## [3.17.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.17.0/packages/gatsby-telemetry) (2022-06-21) +## [3.17.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.17.0/deprecated-packages/gatsby-telemetry) (2022-06-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.17) **Note:** Version bump only for package gatsby-telemetry -## [3.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.16.0/packages/gatsby-telemetry) (2022-06-07) +## [3.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.16.0/deprecated-packages/gatsby-telemetry) (2022-06-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.16) @@ -220,13 +220,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.7.2 [#35808](https://github.com/gatsbyjs/gatsby/issues/35808) ([2c55b79](https://github.com/gatsbyjs/gatsby/commit/2c55b794dd95b40a994f56df5f912219771ccab4)) -## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.15.0/packages/gatsby-telemetry) (2022-05-24) +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.15.0/deprecated-packages/gatsby-telemetry) (2022-05-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.15) **Note:** Version bump only for package gatsby-telemetry -## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.14.0/packages/gatsby-telemetry) (2022-05-10) +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.14.0/deprecated-packages/gatsby-telemetry) (2022-05-10) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14) @@ -238,47 +238,47 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.6.4 [#34984](https://github.com/gatsbyjs/gatsby/issues/34984) ([71eb414](https://github.com/gatsbyjs/gatsby/commit/71eb414ad5abf1c835a2c243f01ac98ea5ee7e37)) -## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.13.0/packages/gatsby-telemetry) (2022-04-26) +## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.13.0/deprecated-packages/gatsby-telemetry) (2022-04-26) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.13) **Note:** Version bump only for package gatsby-telemetry -### [3.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.12.1/packages/gatsby-telemetry) (2022-04-13) +### [3.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.12.1/deprecated-packages/gatsby-telemetry) (2022-04-13) **Note:** Version bump only for package gatsby-telemetry -## [3.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.12.0/packages/gatsby-telemetry) (2022-04-12) +## [3.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.12.0/deprecated-packages/gatsby-telemetry) (2022-04-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.12) **Note:** Version bump only for package gatsby-telemetry -### [3.11.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.11.1/packages/gatsby-telemetry) (2022-03-31) +### [3.11.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.11.1/deprecated-packages/gatsby-telemetry) (2022-03-31) **Note:** Version bump only for package gatsby-telemetry -## [3.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.11.0/packages/gatsby-telemetry) (2022-03-29) +## [3.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.11.0/deprecated-packages/gatsby-telemetry) (2022-03-29) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.11) **Note:** Version bump only for package gatsby-telemetry -### [3.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.10.1/packages/gatsby-telemetry) (2022-03-23) +### [3.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.10.1/deprecated-packages/gatsby-telemetry) (2022-03-23) **Note:** Version bump only for package gatsby-telemetry -## [3.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.10.0/packages/gatsby-telemetry) (2022-03-16) +## [3.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.10.0/deprecated-packages/gatsby-telemetry) (2022-03-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.10) **Note:** Version bump only for package gatsby-telemetry -### [3.9.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.9.1/packages/gatsby-telemetry) (2022-03-09) +### [3.9.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.9.1/deprecated-packages/gatsby-telemetry) (2022-03-09) **Note:** Version bump only for package gatsby-telemetry -## [3.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.9.0/packages/gatsby-telemetry) (2022-03-01) +## [3.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.9.0/deprecated-packages/gatsby-telemetry) (2022-03-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.9) @@ -286,21 +286,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Format changelog files ([088f23b](https://github.com/gatsbyjs/gatsby/commit/088f23b084b67f746a383e06e9216cef83270317)) -### [3.8.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.8.2/packages/gatsby-telemetry) (2022-03-01) +### [3.8.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.8.2/deprecated-packages/gatsby-telemetry) (2022-03-01) **Note:** Version bump only for package gatsby-telemetry -### [3.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.8.1/packages/gatsby-telemetry) (2022-02-25) +### [3.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.8.1/deprecated-packages/gatsby-telemetry) (2022-02-25) **Note:** Version bump only for package gatsby-telemetry -## [3.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.8.0/packages/gatsby-telemetry) (2022-02-22) +## [3.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.8.0/deprecated-packages/gatsby-telemetry) (2022-02-22) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.8) **Note:** Version bump only for package gatsby-telemetry -## [3.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.7.0/packages/gatsby-telemetry) (2022-02-08) +## [3.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.7.0/deprecated-packages/gatsby-telemetry) (2022-02-08) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.7) @@ -312,21 +312,21 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.5.5 [#34641](https://github.com/gatsbyjs/gatsby/issues/34641) ([f7a7e1f](https://github.com/gatsbyjs/gatsby/commit/f7a7e1f642d91babb397156ab37cb28dcde19737)) -## [3.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.6.0/packages/gatsby-telemetry) (2022-01-25) +## [3.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.6.0/deprecated-packages/gatsby-telemetry) (2022-01-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.6) **Note:** Version bump only for package gatsby-telemetry -### [3.5.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.5.2/packages/gatsby-telemetry) (2022-01-17) +### [3.5.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.5.2/deprecated-packages/gatsby-telemetry) (2022-01-17) **Note:** Version bump only for package gatsby-telemetry -### [3.5.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.5.1/packages/gatsby-telemetry) (2022-01-12) +### [3.5.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.5.1/deprecated-packages/gatsby-telemetry) (2022-01-12) **Note:** Version bump only for package gatsby-telemetry -## [3.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.5.0/packages/gatsby-telemetry) (2022-01-11) +## [3.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.5.0/deprecated-packages/gatsby-telemetry) (2022-01-11) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.5) @@ -335,7 +335,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.5.4 [#34358](https://github.com/gatsbyjs/gatsby/issues/34358) ([c6e4298](https://github.com/gatsbyjs/gatsby/commit/c6e42985a20d6b148442aa5f7af1880fa600780b)) - upgrade jest [#33277](https://github.com/gatsbyjs/gatsby/issues/33277) ([34cb202](https://github.com/gatsbyjs/gatsby/commit/34cb202d9c8c202f082edb03c4cc1815eb81abe1)) -## [3.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.4.0/packages/gatsby-telemetry) (2021-12-14) +## [3.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.4.0/deprecated-packages/gatsby-telemetry) (2021-12-14) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.4) @@ -343,13 +343,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.5.2 [#34144](https://github.com/gatsbyjs/gatsby/issues/34144) ([51bff91](https://github.com/gatsbyjs/gatsby/commit/51bff91246cbc48ba50c9650205b0488691fb82a)) -## [3.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.3.0/packages/gatsby-telemetry) (2021-12-01) +## [3.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.3.0/deprecated-packages/gatsby-telemetry) (2021-12-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.3) **Note:** Version bump only for package gatsby-telemetry -## [3.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.2.0/packages/gatsby-telemetry) (2021-11-16) +## [3.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.2.0/deprecated-packages/gatsby-telemetry) (2021-11-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.2) @@ -361,19 +361,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency typescript to ^4.4.4 [#33757](https://github.com/gatsbyjs/gatsby/issues/33757) ([7743561](https://github.com/gatsbyjs/gatsby/commit/7743561bbbe0a621d22030fecbba97dfc3e566d1)) -### [3.1.3](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.3/packages/gatsby-telemetry) (2021-11-15) +### [3.1.3](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.3/deprecated-packages/gatsby-telemetry) (2021-11-15) **Note:** Version bump only for package gatsby-telemetry -### [3.1.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.2/packages/gatsby-telemetry) (2021-11-11) +### [3.1.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.2/deprecated-packages/gatsby-telemetry) (2021-11-11) **Note:** Version bump only for package gatsby-telemetry -### [3.1.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.1/packages/gatsby-telemetry) (2021-11-10) +### [3.1.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.1/deprecated-packages/gatsby-telemetry) (2021-11-10) **Note:** Version bump only for package gatsby-telemetry -## [3.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.0/packages/gatsby-telemetry) (2021-11-02) +## [3.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.1.0/deprecated-packages/gatsby-telemetry) (2021-11-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.1) @@ -381,7 +381,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency node-fetch to ^2.6.5 for gatsby-telemetry [#33363](https://github.com/gatsbyjs/gatsby/issues/33363) ([52bfb14](https://github.com/gatsbyjs/gatsby/commit/52bfb149ab1828cf2082e92d487c29c9fdbd2ff7)) -## [3.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.0.0/packages/gatsby-telemetry) (2021-10-21) +## [3.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@3.0.0/deprecated-packages/gatsby-telemetry) (2021-10-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.0) @@ -400,7 +400,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - remove deps that are global [#33270](https://github.com/gatsbyjs/gatsby/issues/33270) ([a960906](https://github.com/gatsbyjs/gatsby/commit/a96090690b479e7e042544ec18eec39d81ed4c96)) - apply patches for v4 [#33170](https://github.com/gatsbyjs/gatsby/issues/33170) ([f8c5141](https://github.com/gatsbyjs/gatsby/commit/f8c5141bf72108a53338fd01514522ae7a1b37bf)) -## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.14.0/packages/gatsby-telemetry) (2021-09-18) +## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.14.0/deprecated-packages/gatsby-telemetry) (2021-09-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) @@ -413,7 +413,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) - update fs-extra (major) [#32654](https://github.com/gatsbyjs/gatsby/issues/32654) ([eea2687](https://github.com/gatsbyjs/gatsby/commit/eea26873f386d02f27c1708291da0c56585663eb)) -## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.13.0/packages/gatsby-telemetry) (2021-09-01) +## [2.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.13.0/deprecated-packages/gatsby-telemetry) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) @@ -421,7 +421,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - re-generate changelogs [#32886](https://github.com/gatsbyjs/gatsby/issues/32886) ([417df15](https://github.com/gatsbyjs/gatsby/commit/417df15230be368a9db91f2ad1a9bc0442733177)) -## [2.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.12.0/packages/gatsby-telemetry) (2021-08-18) +## [2.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.12.0/deprecated-packages/gatsby-telemetry) (2021-08-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.12) @@ -434,13 +434,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update formatting & linting [#32626](https://github.com/gatsbyjs/gatsby/issues/32626) ([4a765b5](https://github.com/gatsbyjs/gatsby/commit/4a765b5c62208d58f0bd7fd59558160c0b9feed3)) - update babel monorepo [#32564](https://github.com/gatsbyjs/gatsby/issues/32564) ([a554998](https://github.com/gatsbyjs/gatsby/commit/a554998b4f6765103b650813cf52dbfcc575fecf)) -## [2.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.11.0/packages/gatsby-telemetry) (2021-08-04) +## [2.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.11.0/deprecated-packages/gatsby-telemetry) (2021-08-04) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.11) **Note:** Version bump only for package gatsby-telemetry -## [2.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.10.0/packages/gatsby-telemetry) (2021-07-20) +## [2.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.10.0/deprecated-packages/gatsby-telemetry) (2021-07-20) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.10) @@ -453,7 +453,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#32238](https://github.com/gatsbyjs/gatsby/issues/32238) ([466d4c0](https://github.com/gatsbyjs/gatsby/commit/466d4c087bbc96abb942a02c67243bcc9a4f2a0a)) -## [2.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.9.0/packages/gatsby-telemetry) (2021-07-07) +## [2.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.9.0/deprecated-packages/gatsby-telemetry) (2021-07-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.9) @@ -465,7 +465,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Flush more often with gatsby develop [#32015](https://github.com/gatsbyjs/gatsby/issues/32015) ([51804a0](https://github.com/gatsbyjs/gatsby/commit/51804a08f952231f54c1ebcb186437c6c00eaa6f)) -## [2.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.8.0/packages/gatsby-telemetry) (2021-06-23) +## [2.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.8.0/deprecated-packages/gatsby-telemetry) (2021-06-23) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.8) @@ -477,13 +477,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - bump babel minor [#31857](https://github.com/gatsbyjs/gatsby/issues/31857) ([7d42e8d](https://github.com/gatsbyjs/gatsby/commit/7d42e8d866e46e9c39838d812d080d06433f7060)) -### [2.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.7.1/packages/gatsby-telemetry) (2021-06-10) +### [2.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.7.1/deprecated-packages/gatsby-telemetry) (2021-06-10) #### Chores - bump babel minor [#31857](https://github.com/gatsbyjs/gatsby/issues/31857) [#31859](https://github.com/gatsbyjs/gatsby/issues/31859) ([8636025](https://github.com/gatsbyjs/gatsby/commit/863602567930a39142ed33d9d1f1813b7dec8686)) -## [2.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.7.0/packages/gatsby-telemetry) (2021-06-09) +## [2.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.7.0/deprecated-packages/gatsby-telemetry) (2021-06-09) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.7) @@ -491,13 +491,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#31143](https://github.com/gatsbyjs/gatsby/issues/31143) ([701ab2f](https://github.com/gatsbyjs/gatsby/commit/701ab2f6690c3f1bbaf60cf572513ea566cc9ec9)) -## [2.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.6.0/packages/gatsby-telemetry) (2021-05-25) +## [2.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.6.0/deprecated-packages/gatsby-telemetry) (2021-05-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.6) **Note:** Version bump only for package gatsby-telemetry -## [2.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.5.0/packages/gatsby-telemetry) (2021-05-12) +## [2.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.5.0/deprecated-packages/gatsby-telemetry) (2021-05-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.5) @@ -505,31 +505,31 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Read installedGatsbyVersion correctly for workspaces [#31196](https://github.com/gatsbyjs/gatsby/issues/31196) ([af12b66](https://github.com/gatsbyjs/gatsby/commit/af12b660f1c4c6f8da2abc537bd07973b8bfd21a)) -### [2.4.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.4.1/packages/gatsby-telemetry) (2021-05-05) +### [2.4.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.4.1/deprecated-packages/gatsby-telemetry) (2021-05-05) #### Bug Fixes - Read installedGatsbyVersion correctly for workspaces [#31196](https://github.com/gatsbyjs/gatsby/issues/31196) [#31244](https://github.com/gatsbyjs/gatsby/issues/31244) ([f0ef523](https://github.com/gatsbyjs/gatsby/commit/f0ef523a1cca6f074861d950fdf2cae48f3d0f1c)) -## [2.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.4.0/packages/gatsby-telemetry) (2021-04-28) +## [2.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.4.0/deprecated-packages/gatsby-telemetry) (2021-04-28) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.4) **Note:** Version bump only for package gatsby-telemetry -## [2.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.3.0/packages/gatsby-telemetry) (2021-04-14) +## [2.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.3.0/deprecated-packages/gatsby-telemetry) (2021-04-14) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.3) **Note:** Version bump only for package gatsby-telemetry -## [2.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.2.0/packages/gatsby-telemetry) (2021-03-30) +## [2.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.2.0/deprecated-packages/gatsby-telemetry) (2021-03-30) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.2) **Note:** Version bump only for package gatsby-telemetry -## [2.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.1.0/packages/gatsby-telemetry) (2021-03-16) +## [2.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.1.0/deprecated-packages/gatsby-telemetry) (2021-03-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.1) @@ -541,7 +541,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update eslint to fix linting issues fix [#29988](https://github.com/gatsbyjs/gatsby/issues/29988) ([5636389](https://github.com/gatsbyjs/gatsby/commit/5636389e8fa626c644e90abc14589e9961d98c68)) -## [2.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.0.0/packages/gatsby-telemetry) (2021-03-02) +## [2.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@2.0.0/deprecated-packages/gatsby-telemetry) (2021-03-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.0) @@ -550,19 +550,19 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Move isTruthy to gatsby-core-utils [#29707](https://github.com/gatsbyjs/gatsby/issues/29707) ([837fcd2](https://github.com/gatsbyjs/gatsby/commit/837fcd2831cfaab38274466027b5384d4c19ad84)) - Upgrade typescript [#29388](https://github.com/gatsbyjs/gatsby/issues/29388) ([823140f](https://github.com/gatsbyjs/gatsby/commit/823140f2b0bbbcab51923186bab8128bb8e0afe5)) -### [1.10.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.10.2/packages/gatsby-telemetry) (2021-05-04) +### [1.10.2](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.10.2/deprecated-packages/gatsby-telemetry) (2021-05-04) #### Bug Fixes - Read installedGatsbyVersion correctly for workspaces [#31196](https://github.com/gatsbyjs/gatsby/issues/31196) [#31208](https://github.com/gatsbyjs/gatsby/issues/31208) ([c8b9b7c](https://github.com/gatsbyjs/gatsby/commit/c8b9b7c88b0bbd76b87f843447f8d7f71d8b9a0f)) -### [1.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.10.1/packages/gatsby-telemetry) (2021-02-24) +### [1.10.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.10.1/deprecated-packages/gatsby-telemetry) (2021-02-24) #### Chores - Move isTruthy to gatsby-core-utils [#29707](https://github.com/gatsbyjs/gatsby/issues/29707) [#29710](https://github.com/gatsbyjs/gatsby/issues/29710) ([2022f2b](https://github.com/gatsbyjs/gatsby/commit/2022f2bd5d56d966b17b0c11c94232605a021cd4)) -## [1.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.10.0/packages/gatsby-telemetry) (2021-02-02) +## [1.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.10.0/deprecated-packages/gatsby-telemetry) (2021-02-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.32) @@ -574,7 +574,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Add total pages count to the schema [#29087](https://github.com/gatsbyjs/gatsby/issues/29087) ([6ec792d](https://github.com/gatsbyjs/gatsby/commit/6ec792d3c84c83afd03c6e981f4ac385d3d56360)) -## [1.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.9.0/packages/gatsby-telemetry) (2021-01-20) +## [1.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.9.0/deprecated-packages/gatsby-telemetry) (2021-01-20) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.31) @@ -583,13 +583,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - allow sharing tags in a file and read it only when things change [#28953](https://github.com/gatsbyjs/gatsby/issues/28953) ([9cb8eeb](https://github.com/gatsbyjs/gatsby/commit/9cb8eeb2cb39bea4f7753f5a50438193e93dc6ca)) - ensure forked develop child processes have the same sessionId [#28799](https://github.com/gatsbyjs/gatsby/issues/28799) ([b72b5bc](https://github.com/gatsbyjs/gatsby/commit/b72b5bc4dcb87c99c81304e727ba39f18e694f3a)) -### [1.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.8.1/packages/gatsby-telemetry) (2021-01-13) +### [1.8.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.8.1/deprecated-packages/gatsby-telemetry) (2021-01-13) #### Chores - allow sharing tags in a file and read it only when things change [#28953](https://github.com/gatsbyjs/gatsby/issues/28953) [#28992](https://github.com/gatsbyjs/gatsby/issues/28992) ([1617c6c](https://github.com/gatsbyjs/gatsby/commit/1617c6c8643eb851f0a16547918337b8d81223c4)) -## [1.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.8.0/packages/gatsby-telemetry) (2021-01-06) +## [1.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.8.0/deprecated-packages/gatsby-telemetry) (2021-01-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.30) @@ -597,11 +597,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - add valueBoolean [#28734](https://github.com/gatsbyjs/gatsby/issues/28734) ([338ed78](https://github.com/gatsbyjs/gatsby/commit/338ed78def6c6a70571b08476ed5f53b73bc5a09)) -### [1.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.7.1/packages/gatsby-telemetry) (2020-12-23) +### [1.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.7.1/deprecated-packages/gatsby-telemetry) (2020-12-23) **Note:** Version bump only for package gatsby-telemetry -## [1.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.7.0/packages/gatsby-telemetry) (2020-12-15) +## [1.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.7.0/deprecated-packages/gatsby-telemetry) (2020-12-15) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.29) @@ -609,7 +609,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency cross-env to ^7.0.3 [#28505](https://github.com/gatsbyjs/gatsby/issues/28505) ([a819b9b](https://github.com/gatsbyjs/gatsby/commit/a819b9bfb663139f7b06c3ed7d6d6069a2382b2c)) -## [1.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.6.0/packages/gatsby-telemetry) (2020-12-02) +## [1.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.6.0/deprecated-packages/gatsby-telemetry) (2020-12-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.28) @@ -621,13 +621,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - drop seemingly unused dependency [#28129](https://github.com/gatsbyjs/gatsby/issues/28129) ([fed6c9a](https://github.com/gatsbyjs/gatsby/commit/fed6c9a7e1db936233a46ea19cb976307e7201b0)) -### [1.5.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.5.1/packages/gatsby-telemetry) (2020-11-25) +### [1.5.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.5.1/deprecated-packages/gatsby-telemetry) (2020-11-25) #### Bug Fixes - use windowsHide to not show windows command prompt windows [#28258](https://github.com/gatsbyjs/gatsby/issues/28258) [#28285](https://github.com/gatsbyjs/gatsby/issues/28285) ([0c07bb6](https://github.com/gatsbyjs/gatsby/commit/0c07bb67f8692fa7e3662a002790201a98be7bf2)) -## [1.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.5.0/packages/gatsby-telemetry) (2020-11-20) +## [1.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.5.0/deprecated-packages/gatsby-telemetry) (2020-11-20) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.27) @@ -641,13 +641,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Add new telemetry field for a generic string array [#28025](https://github.com/gatsbyjs/gatsby/issues/28025) ([d5807ac](https://github.com/gatsbyjs/gatsby/commit/d5807ac1d1641b8f181fae6bc6a4b3fdc05ef898)) - add two more value placeholders. [#27949](https://github.com/gatsbyjs/gatsby/issues/27949) ([c6d754a](https://github.com/gatsbyjs/gatsby/commit/c6d754a83683e505466e6d2b63e04395f4c67ea8)) -### [1.4.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.4.1/packages/gatsby-telemetry) (2020-11-14) +### [1.4.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.4.1/deprecated-packages/gatsby-telemetry) (2020-11-14) #### Chores - add more value placeholders. (#27949 and #28025) [#27949](https://github.com/gatsbyjs/gatsby/issues/27949) [#28025](https://github.com/gatsbyjs/gatsby/issues/28025) [#28036](https://github.com/gatsbyjs/gatsby/issues/28036) [#27949](https://github.com/gatsbyjs/gatsby/issues/27949) [#28025](https://github.com/gatsbyjs/gatsby/issues/28025) ([59713ed](https://github.com/gatsbyjs/gatsby/commit/59713eda49520b92f2e88c5d25123bcfb96e4590)) -## [1.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.4.0/packages/gatsby-telemetry) (2020-11-12) +## [1.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-telemetry@1.4.0/deprecated-packages/gatsby-telemetry) (2020-11-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.26) @@ -1188,7 +1188,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -- **gatsby-telemetry:** add the missing fs-extra dependency ([#12899](https://github.com/gatsbyjs/gatsby/issues/12899)) ([798d232](https://github.com/gatsbyjs/gatsby/commit/798d232)), closes [/github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-telemetry/src/store.js#L10](https://github.com/gatsbyjs/gatsby/issues/L10) +- **gatsby-telemetry:** add the missing fs-extra dependency ([#12899](https://github.com/gatsbyjs/gatsby/issues/12899)) ([798d232](https://github.com/gatsbyjs/gatsby/commit/798d232)), closes [/github.com/gatsbyjs/gatsby/blob/master/deprecated-packages/gatsby-telemetry/src/store.js#L10](https://github.com/gatsbyjs/gatsby/issues/L10) ## [1.0.3](https://github.com/gatsbyjs/gatsby/compare/gatsby-telemetry@1.0.2...gatsby-telemetry@1.0.3) (2019-03-27) @@ -1206,7 +1206,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline ### Bug Fixes -- **gatsby-telemetry:** Ensure all new installs will see the telemetry message at least once ([#12867](https://github.com/gatsbyjs/gatsby/issues/12867)) ([ddde1ee](https://github.com/gatsbyjs/gatsby/commit/ddde1ee)), closes [/github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-telemetry/src/telemetry.js#L110](https://github.com/gatsbyjs/gatsby/issues/L110) +- **gatsby-telemetry:** Ensure all new installs will see the telemetry message at least once ([#12867](https://github.com/gatsbyjs/gatsby/issues/12867)) ([ddde1ee](https://github.com/gatsbyjs/gatsby/commit/ddde1ee)), closes [/github.com/gatsbyjs/gatsby/blob/master/deprecated-packages/gatsby-telemetry/src/telemetry.js#L110](https://github.com/gatsbyjs/gatsby/issues/L110) # 1.0.0 (2019-03-26) diff --git a/packages/gatsby-telemetry/README.md b/deprecated-packages/gatsby-telemetry/README.md similarity index 100% rename from packages/gatsby-telemetry/README.md rename to deprecated-packages/gatsby-telemetry/README.md diff --git a/packages/gatsby-telemetry/package.json b/deprecated-packages/gatsby-telemetry/package.json similarity index 89% rename from packages/gatsby-telemetry/package.json rename to deprecated-packages/gatsby-telemetry/package.json index feae86dfe09bc..a858de8f8a085 100644 --- a/packages/gatsby-telemetry/package.json +++ b/deprecated-packages/gatsby-telemetry/package.json @@ -25,7 +25,7 @@ "lib/", "src/" ], - "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-telemetry#readme", + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/deprecated-packages/gatsby-telemetry#readme", "keywords": [ "telemetry" ], @@ -34,7 +34,7 @@ "repository": { "type": "git", "url": "https://github.com/gatsbyjs/gatsby.git", - "directory": "packages/gatsby-telemetry" + "directory": "deprecated-packages/gatsby-telemetry" }, "scripts": { "build": "babel src --out-dir lib --ignore \"**/__tests__\",\"**/__mocks__\" --extensions \".ts,.js\"", diff --git a/packages/gatsby-telemetry/src/__tests__/error-helpers.ts b/deprecated-packages/gatsby-telemetry/src/__tests__/error-helpers.ts similarity index 100% rename from packages/gatsby-telemetry/src/__tests__/error-helpers.ts rename to deprecated-packages/gatsby-telemetry/src/__tests__/error-helpers.ts diff --git a/packages/gatsby-telemetry/src/__tests__/repository-id.ts b/deprecated-packages/gatsby-telemetry/src/__tests__/repository-id.ts similarity index 100% rename from packages/gatsby-telemetry/src/__tests__/repository-id.ts rename to deprecated-packages/gatsby-telemetry/src/__tests__/repository-id.ts diff --git a/packages/gatsby-telemetry/src/create-flush.ts b/deprecated-packages/gatsby-telemetry/src/create-flush.ts similarity index 100% rename from packages/gatsby-telemetry/src/create-flush.ts rename to deprecated-packages/gatsby-telemetry/src/create-flush.ts diff --git a/packages/gatsby-telemetry/src/error-helpers.ts b/deprecated-packages/gatsby-telemetry/src/error-helpers.ts similarity index 100% rename from packages/gatsby-telemetry/src/error-helpers.ts rename to deprecated-packages/gatsby-telemetry/src/error-helpers.ts diff --git a/packages/gatsby-telemetry/src/event-storage.ts b/deprecated-packages/gatsby-telemetry/src/event-storage.ts similarity index 100% rename from packages/gatsby-telemetry/src/event-storage.ts rename to deprecated-packages/gatsby-telemetry/src/event-storage.ts diff --git a/packages/gatsby-telemetry/src/get-dependencies.ts b/deprecated-packages/gatsby-telemetry/src/get-dependencies.ts similarity index 100% rename from packages/gatsby-telemetry/src/get-dependencies.ts rename to deprecated-packages/gatsby-telemetry/src/get-dependencies.ts diff --git a/packages/gatsby-telemetry/src/in-memory-store.ts b/deprecated-packages/gatsby-telemetry/src/in-memory-store.ts similarity index 100% rename from packages/gatsby-telemetry/src/in-memory-store.ts rename to deprecated-packages/gatsby-telemetry/src/in-memory-store.ts diff --git a/packages/gatsby-telemetry/src/index.ts b/deprecated-packages/gatsby-telemetry/src/index.ts similarity index 100% rename from packages/gatsby-telemetry/src/index.ts rename to deprecated-packages/gatsby-telemetry/src/index.ts diff --git a/packages/gatsby-telemetry/src/repository-id.ts b/deprecated-packages/gatsby-telemetry/src/repository-id.ts similarity index 100% rename from packages/gatsby-telemetry/src/repository-id.ts rename to deprecated-packages/gatsby-telemetry/src/repository-id.ts diff --git a/packages/gatsby-telemetry/src/send.ts b/deprecated-packages/gatsby-telemetry/src/send.ts similarity index 100% rename from packages/gatsby-telemetry/src/send.ts rename to deprecated-packages/gatsby-telemetry/src/send.ts diff --git a/packages/gatsby-telemetry/src/store.ts b/deprecated-packages/gatsby-telemetry/src/store.ts similarity index 100% rename from packages/gatsby-telemetry/src/store.ts rename to deprecated-packages/gatsby-telemetry/src/store.ts diff --git a/packages/gatsby-telemetry/src/telemetry.ts b/deprecated-packages/gatsby-telemetry/src/telemetry.ts similarity index 100% rename from packages/gatsby-telemetry/src/telemetry.ts rename to deprecated-packages/gatsby-telemetry/src/telemetry.ts diff --git a/packages/gatsby-telemetry/tsconfig.json b/deprecated-packages/gatsby-telemetry/tsconfig.json similarity index 100% rename from packages/gatsby-telemetry/tsconfig.json rename to deprecated-packages/gatsby-telemetry/tsconfig.json diff --git a/packages/gatsby-transformer-javascript-static-exports/.babelrc b/deprecated-packages/gatsby-transformer-javascript-static-exports/.babelrc similarity index 100% rename from packages/gatsby-transformer-javascript-static-exports/.babelrc rename to deprecated-packages/gatsby-transformer-javascript-static-exports/.babelrc diff --git a/packages/gatsby-transformer-javascript-static-exports/.gitignore b/deprecated-packages/gatsby-transformer-javascript-static-exports/.gitignore similarity index 100% rename from packages/gatsby-transformer-javascript-static-exports/.gitignore rename to deprecated-packages/gatsby-transformer-javascript-static-exports/.gitignore diff --git a/packages/gatsby-transformer-javascript-static-exports/.npmignore b/deprecated-packages/gatsby-transformer-javascript-static-exports/.npmignore similarity index 100% rename from packages/gatsby-transformer-javascript-static-exports/.npmignore rename to deprecated-packages/gatsby-transformer-javascript-static-exports/.npmignore diff --git a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md b/deprecated-packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md similarity index 81% rename from packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md rename to deprecated-packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md index f294b17be9fbf..54c7d6e1b50fb 100644 --- a/packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md +++ b/deprecated-packages/gatsby-transformer-javascript-static-exports/CHANGELOG.md @@ -3,59 +3,59 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.14.0/packages/gatsby-transformer-javascript-static-exports) (2024-11-06) +## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.14.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -### [5.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.13.1/packages/gatsby-transformer-javascript-static-exports) (2024-01-23) +### [5.13.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.13.1/deprecated-packages/gatsby-transformer-javascript-static-exports) (2024-01-23) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.13.0/packages/gatsby-transformer-javascript-static-exports) (2023-12-18) +## [5.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.13.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-12-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.13) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.12.0/packages/gatsby-transformer-javascript-static-exports) (2023-08-24) +## [5.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.12.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-08-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.12) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.11.0/packages/gatsby-transformer-javascript-static-exports) (2023-06-15) +## [5.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.11.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-06-15) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.11) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.10.0/packages/gatsby-transformer-javascript-static-exports) (2023-05-16) +## [5.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.10.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-05-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.10) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.9.0/packages/gatsby-transformer-javascript-static-exports) (2023-04-18) +## [5.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.9.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-04-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.9) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.8.0/packages/gatsby-transformer-javascript-static-exports) (2023-03-21) +## [5.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.8.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-03-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.8) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.7.0/packages/gatsby-transformer-javascript-static-exports) (2023-02-21) +## [5.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.7.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-02-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.7) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.6.0/packages/gatsby-transformer-javascript-static-exports) (2023-02-07) +## [5.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.6.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-02-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.6) @@ -63,13 +63,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#37568](https://github.com/gatsbyjs/gatsby/issues/37568) ([13a0a9e](https://github.com/gatsbyjs/gatsby/commit/13a0a9e83dcb015b65dff6b73cdd5dea09c2988f)) -## [5.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.5.0/packages/gatsby-transformer-javascript-static-exports) (2023-01-24) +## [5.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.5.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-01-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.5) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.4.0/packages/gatsby-transformer-javascript-static-exports) (2023-01-10) +## [5.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.4.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2023-01-10) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.4) @@ -77,25 +77,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#37386](https://github.com/gatsbyjs/gatsby/issues/37386) ([b941876](https://github.com/gatsbyjs/gatsby/commit/b94187633d94d0f0071b38ffe93380dd802ec70f)) -## [5.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.3.0/packages/gatsby-transformer-javascript-static-exports) (2022-12-13) +## [5.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.3.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-12-13) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.3) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.2.0/packages/gatsby-transformer-javascript-static-exports) (2022-11-25) +## [5.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.2.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-11-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.2) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.1.0/packages/gatsby-transformer-javascript-static-exports) (2022-11-22) +## [5.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.1.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-11-22) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.1) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [5.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.0.0/packages/gatsby-transformer-javascript-static-exports) (2022-11-08) +## [5.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@5.0.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-11-08) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.0) @@ -105,101 +105,101 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - make unstable_shouldOnCreateNode stable [#36516](https://github.com/gatsbyjs/gatsby/issues/36516) ([90f9ab4](https://github.com/gatsbyjs/gatsby/commit/90f9ab47593ba7458fc5bc677c4b0282b30808c8)) - apply patches for v5 [#36796](https://github.com/gatsbyjs/gatsby/issues/36796) ([25f79b6](https://github.com/gatsbyjs/gatsby/commit/25f79b6c3719fdf09584ade620a05c66ba2a697c)) -## [4.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.24.0/packages/gatsby-transformer-javascript-static-exports) (2022-09-27) +## [4.24.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.24.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-09-27) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.24) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.23.0/packages/gatsby-transformer-javascript-static-exports) (2022-09-13) +## [4.23.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.23.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-09-13) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.23) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.22.0/packages/gatsby-transformer-javascript-static-exports) (2022-08-30) +## [4.22.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.22.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-08-30) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.22) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.21.0/packages/gatsby-transformer-javascript-static-exports) (2022-08-16) +## [4.21.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.21.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-08-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.21) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.20.0/packages/gatsby-transformer-javascript-static-exports) (2022-08-02) +## [4.20.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.20.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-08-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.20) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.19.0/packages/gatsby-transformer-javascript-static-exports) (2022-07-19) +## [4.19.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.19.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-07-19) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.19) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.18.0/packages/gatsby-transformer-javascript-static-exports) (2022-07-05) +## [4.18.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.18.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-07-05) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.18) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.17.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.17.0/packages/gatsby-transformer-javascript-static-exports) (2022-06-21) +## [4.17.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.17.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-06-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.17) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.16.0/packages/gatsby-transformer-javascript-static-exports) (2022-06-07) +## [4.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.16.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-06-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.16) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.15.0/packages/gatsby-transformer-javascript-static-exports) (2022-05-24) +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.15.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-05-24) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.15) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.14.0/packages/gatsby-transformer-javascript-static-exports) (2022-05-10) +## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.14.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-05-10) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.14) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.13.0/packages/gatsby-transformer-javascript-static-exports) (2022-04-26) +## [4.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.13.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-04-26) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.13) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -### [4.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.12.1/packages/gatsby-transformer-javascript-static-exports) (2022-04-13) +### [4.12.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.12.1/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-04-13) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.12.0/packages/gatsby-transformer-javascript-static-exports) (2022-04-12) +## [4.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.12.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-04-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.12) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.11.0/packages/gatsby-transformer-javascript-static-exports) (2022-03-29) +## [4.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.11.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-03-29) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.11) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.10.0/packages/gatsby-transformer-javascript-static-exports) (2022-03-16) +## [4.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.10.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-03-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.10) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.9.0/packages/gatsby-transformer-javascript-static-exports) (2022-03-01) +## [4.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.9.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-03-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.9) @@ -207,55 +207,55 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - Format changelog files ([088f23b](https://github.com/gatsbyjs/gatsby/commit/088f23b084b67f746a383e06e9216cef83270317)) -## [4.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.8.0/packages/gatsby-transformer-javascript-static-exports) (2022-02-22) +## [4.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.8.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-02-22) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.8) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.7.0/packages/gatsby-transformer-javascript-static-exports) (2022-02-08) +## [4.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.7.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-02-08) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.7) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.6.0/packages/gatsby-transformer-javascript-static-exports) (2022-01-25) +## [4.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.6.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-01-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.6) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.5.0/packages/gatsby-transformer-javascript-static-exports) (2022-01-11) +## [4.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.5.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2022-01-11) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.5) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.4.0/packages/gatsby-transformer-javascript-static-exports) (2021-12-14) +## [4.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.4.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-12-14) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.4) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.3.0/packages/gatsby-transformer-javascript-static-exports) (2021-12-01) +## [4.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.3.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-12-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.3) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.2.0/packages/gatsby-transformer-javascript-static-exports) (2021-11-16) +## [4.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.2.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-11-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.2) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.1.0/packages/gatsby-transformer-javascript-static-exports) (2021-11-02) +## [4.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.1.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-11-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.1) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.0.0/packages/gatsby-transformer-javascript-static-exports) (2021-10-21) +## [4.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@4.0.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-10-21) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v4.0) @@ -263,7 +263,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - apply patches for v4 [#33170](https://github.com/gatsbyjs/gatsby/issues/33170) ([f8c5141](https://github.com/gatsbyjs/gatsby/commit/f8c5141bf72108a53338fd01514522ae7a1b37bf)) -## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.14.0/packages/gatsby-transformer-javascript-static-exports) (2021-09-18) +## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.14.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-09-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.14) @@ -271,7 +271,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#32996](https://github.com/gatsbyjs/gatsby/issues/32996) ([048c7a7](https://github.com/gatsbyjs/gatsby/commit/048c7a727bbc6a9ad8e27afba72ee20e946c4aaa)) -## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.13.0/packages/gatsby-transformer-javascript-static-exports) (2021-09-01) +## [3.13.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.13.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-09-01) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.13) @@ -279,7 +279,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - re-generate changelogs [#32886](https://github.com/gatsbyjs/gatsby/issues/32886) ([417df15](https://github.com/gatsbyjs/gatsby/commit/417df15230be368a9db91f2ad1a9bc0442733177)) -## [3.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.12.0/packages/gatsby-transformer-javascript-static-exports) (2021-08-18) +## [3.12.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.12.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-08-18) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.12) @@ -287,13 +287,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#32564](https://github.com/gatsbyjs/gatsby/issues/32564) ([a554998](https://github.com/gatsbyjs/gatsby/commit/a554998b4f6765103b650813cf52dbfcc575fecf)) -## [3.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.11.0/packages/gatsby-transformer-javascript-static-exports) (2021-08-04) +## [3.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.11.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-08-04) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.11) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [3.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.10.0/packages/gatsby-transformer-javascript-static-exports) (2021-07-20) +## [3.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.10.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-07-20) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.10) @@ -301,13 +301,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#32238](https://github.com/gatsbyjs/gatsby/issues/32238) ([466d4c0](https://github.com/gatsbyjs/gatsby/commit/466d4c087bbc96abb942a02c67243bcc9a4f2a0a)) -## [3.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.9.0/packages/gatsby-transformer-javascript-static-exports) (2021-07-07) +## [3.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.9.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-07-07) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.9) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [3.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.8.0/packages/gatsby-transformer-javascript-static-exports) (2021-06-23) +## [3.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.8.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-06-23) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.8) @@ -315,13 +315,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - bump babel minor [#31857](https://github.com/gatsbyjs/gatsby/issues/31857) ([7d42e8d](https://github.com/gatsbyjs/gatsby/commit/7d42e8d866e46e9c39838d812d080d06433f7060)) -### [3.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.7.1/packages/gatsby-transformer-javascript-static-exports) (2021-06-10) +### [3.7.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.7.1/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-06-10) #### Chores - bump babel minor [#31857](https://github.com/gatsbyjs/gatsby/issues/31857) [#31859](https://github.com/gatsbyjs/gatsby/issues/31859) ([8636025](https://github.com/gatsbyjs/gatsby/commit/863602567930a39142ed33d9d1f1813b7dec8686)) -## [3.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.7.0/packages/gatsby-transformer-javascript-static-exports) (2021-06-09) +## [3.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.7.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-06-09) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.7) @@ -329,37 +329,37 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#31143](https://github.com/gatsbyjs/gatsby/issues/31143) ([701ab2f](https://github.com/gatsbyjs/gatsby/commit/701ab2f6690c3f1bbaf60cf572513ea566cc9ec9)) -## [3.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.6.0/packages/gatsby-transformer-javascript-static-exports) (2021-05-25) +## [3.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.6.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-05-25) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.6) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [3.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.5.0/packages/gatsby-transformer-javascript-static-exports) (2021-05-12) +## [3.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.5.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-05-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.5) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [3.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.4.0/packages/gatsby-transformer-javascript-static-exports) (2021-04-28) +## [3.4.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.4.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-04-28) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.4) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [3.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.3.0/packages/gatsby-transformer-javascript-static-exports) (2021-04-14) +## [3.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.3.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-04-14) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.3) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [3.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.2.0/packages/gatsby-transformer-javascript-static-exports) (2021-03-30) +## [3.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.2.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-03-30) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.2) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [3.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.1.0/packages/gatsby-transformer-javascript-static-exports) (2021-03-16) +## [3.1.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.1.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-03-16) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.1) @@ -367,31 +367,31 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update eslint to fix linting issues fix [#29988](https://github.com/gatsbyjs/gatsby/issues/29988) ([5636389](https://github.com/gatsbyjs/gatsby/commit/5636389e8fa626c644e90abc14589e9961d98c68)) -## [3.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.0.0/packages/gatsby-transformer-javascript-static-exports) (2021-03-02) +## [3.0.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@3.0.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-03-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v3.0) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [2.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.11.0/packages/gatsby-transformer-javascript-static-exports) (2021-02-02) +## [2.11.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.11.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-02-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.32) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [2.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.10.0/packages/gatsby-transformer-javascript-static-exports) (2021-01-20) +## [2.10.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.10.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-01-20) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.31) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [2.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.9.0/packages/gatsby-transformer-javascript-static-exports) (2021-01-06) +## [2.9.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.9.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2021-01-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.30) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [2.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.8.0/packages/gatsby-transformer-javascript-static-exports) (2020-12-15) +## [2.8.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.8.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2020-12-15) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.29) @@ -399,13 +399,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update dependency cross-env to ^7.0.3 [#28505](https://github.com/gatsbyjs/gatsby/issues/28505) ([a819b9b](https://github.com/gatsbyjs/gatsby/commit/a819b9bfb663139f7b06c3ed7d6d6069a2382b2c)) -## [2.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.7.0/packages/gatsby-transformer-javascript-static-exports) (2020-12-02) +## [2.7.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.7.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2020-12-02) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.28) **Note:** Version bump only for package gatsby-transformer-javascript-static-exports -## [2.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.6.0/packages/gatsby-transformer-javascript-static-exports) (2020-11-20) +## [2.6.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.6.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2020-11-20) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.27) @@ -413,7 +413,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - update babel monorepo [#27528](https://github.com/gatsbyjs/gatsby/issues/27528) ([539dbb0](https://github.com/gatsbyjs/gatsby/commit/539dbb09166e346a6cee568973d2de3d936e8ef3)) -## [2.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.5.0/packages/gatsby-transformer-javascript-static-exports) (2020-11-12) +## [2.5.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-static-exports@2.5.0/deprecated-packages/gatsby-transformer-javascript-static-exports) (2020-11-12) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v2.26) diff --git a/packages/gatsby-transformer-javascript-static-exports/README.md b/deprecated-packages/gatsby-transformer-javascript-static-exports/README.md similarity index 100% rename from packages/gatsby-transformer-javascript-static-exports/README.md rename to deprecated-packages/gatsby-transformer-javascript-static-exports/README.md diff --git a/packages/gatsby-transformer-javascript-static-exports/index.js b/deprecated-packages/gatsby-transformer-javascript-static-exports/index.js similarity index 100% rename from packages/gatsby-transformer-javascript-static-exports/index.js rename to deprecated-packages/gatsby-transformer-javascript-static-exports/index.js diff --git a/packages/gatsby-transformer-javascript-static-exports/package.json b/deprecated-packages/gatsby-transformer-javascript-static-exports/package.json similarity index 83% rename from packages/gatsby-transformer-javascript-static-exports/package.json rename to deprecated-packages/gatsby-transformer-javascript-static-exports/package.json index 1da1304f7a151..3140a690ee87e 100644 --- a/packages/gatsby-transformer-javascript-static-exports/package.json +++ b/deprecated-packages/gatsby-transformer-javascript-static-exports/package.json @@ -18,7 +18,7 @@ "babel-preset-gatsby-package": "^3.15.0-next.0", "cross-env": "^7.0.3" }, - "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-static-exports#readme", + "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/deprecated-packages/gatsby-transformer-javascript-static-exports#readme", "keywords": [ "gatsby", "gatsby-plugin", @@ -31,7 +31,7 @@ "repository": { "type": "git", "url": "https://github.com/gatsbyjs/gatsby.git", - "directory": "packages/gatsby-transformer-javascript-static-exports" + "directory": "deprecated-packages/gatsby-transformer-javascript-static-exports" }, "scripts": { "build": "babel src --out-dir . --ignore \"**/__tests__\"", diff --git a/packages/gatsby-transformer-javascript-static-exports/src/gatsby-node.js b/deprecated-packages/gatsby-transformer-javascript-static-exports/src/gatsby-node.js similarity index 100% rename from packages/gatsby-transformer-javascript-static-exports/src/gatsby-node.js rename to deprecated-packages/gatsby-transformer-javascript-static-exports/src/gatsby-node.js diff --git a/docs/contributing/code-contributions.md b/docs/contributing/code-contributions.md index d19a4dad7559a..88360fcf88311 100644 --- a/docs/contributing/code-contributions.md +++ b/docs/contributing/code-contributions.md @@ -66,7 +66,7 @@ If you're adding e2e tests and want to run them against local changes: ### Troubleshooting -At any point during the contributing process the Gatsby team would love to help! For help with a specific problem you can [open an Discussion on GitHub](https://github.com/gatsbyjs/gatsby/discussions/categories/help). Or drop in to [our Discord server](https://gatsby.dev/discord) for general community discussion and support. +At any point during the contributing process the Gatsby team would love to help! For help with a specific problem you can [open an Discussion on GitHub](https://github.com/gatsbyjs/gatsby/discussions/categories/help). - When you went through the initial setup some time ago and now want to contribute something new, you should make sure to [sync your fork](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/syncing-a-fork) with the latest changes from the primary branch on [gatsbyjs/gatsby](https://github.com/gatsbyjs/gatsby). Otherwise, you might run into issues where files are not found as they were renamed, moved, or deleted. - After syncing your fork, run `yarn run bootstrap` to compile all packages. When files or tests depend on the build output (files in `/dist` directories) they might fail otherwise. @@ -94,4 +94,4 @@ Check [Debugging the build process](/docs/debugging-the-build-process/) page to ## Feedback -At any point during the contributing process the Gatsby team would love to help! For help with a specific problem you can [open an Discussion on GitHub](https://github.com/gatsbyjs/gatsby/discussions/categories/help). Or drop in to [our Discord server](https://gatsby.dev/discord) for general community discussion and support. +At any point during the contributing process the Gatsby team would love to help! For help with a specific problem you can [open an Discussion on GitHub](https://github.com/gatsbyjs/gatsby/discussions/categories/help). diff --git a/docs/contributing/gatsby-governance-model.md b/docs/contributing/gatsby-governance-model.md index 3e481ab077a12..059834f0fc408 100644 --- a/docs/contributing/gatsby-governance-model.md +++ b/docs/contributing/gatsby-governance-model.md @@ -43,9 +43,9 @@ We recognize different degrees of contribution as levels, and most levels can be - **Being here** - Everyone's time is valuable, and the fact that you're here and contributing to Gatsby is amazing! Thank you for being a part of this journey with us. -- **Being a positive member of our community** - Go above and beyond our Code of Conduct, and commit to healthy communication in pull requests, issue discussions, Discord conversations, and interactions outside of our community. +- **Being a positive member of our community** - Go above and beyond our Code of Conduct, and commit to healthy communication in pull requests, issue discussions, and interactions outside of our community. -Each level unlocks new privileges and responsibilities on Discord and GitHub. Below is a summary of each contributor level. +Each level unlocks new privileges and responsibilities on GitHub. Below is a summary of each contributor level. ### Level 1 (L1) - Contributor @@ -56,7 +56,7 @@ Have you done something (big or small) to contribute to the health, success, or - **GitHub:** Submitting a merged pull request - **GitHub:** Sending in a detailed feature request or RFC - **GitHub:** Updating documentation -- Helping people on GitHub, Discord, etc. +- Helping people on GitHub and other platforms. - Answering questions on Stack Overflow, Twitter, etc. - Blogging, Vlogging, Podcasting, and Livestreaming about Gatsby - This list is incomplete! Similar contributions are also recognized. @@ -79,9 +79,9 @@ n/a The **Maintainer** role is available to any contributor who wants to join the team and take part in the long-term maintenance of Gatsby. -The Maintainer role is critical to the long-term health of Gatsby. Maintainers support the **Team** members and together they act as the first line of defense when it comes to new issues, pull requests and Discord activity. Maintainers are most likely the first people that a user will interact with on Discord or GitHub. +The Maintainer role is critical to the long-term health of Gatsby. Maintainers support the **Team** members and together they act as the first line of defense when it comes to new issues and pull requests. Maintainers are most likely the first people that a user will interact with on GitHub. -**A Maintainer is not required to write code!** Some Maintainers spend most of their time inside of Discord, maintaining a healthy community there. Maintainers can also be thought of as **Moderators** on Discord and carry special privileges for moderation. +**A Maintainer is not required to write code!** Some Maintainers focus on community support and can also be thought of as **Moderators** who carry special privileges for moderation. #### Recognized contributions @@ -89,20 +89,14 @@ There is no strict minimum number of contributions needed to reach this level, a - **GitHub:** Submitting non-trivial pull requests and RFCs - **GitHub:** Reviewing non-trivial pull requests and RFCs -- **Discord:** Supporting users in Discord, especially in the "Help" category -- **Discord:** Active participation in RFC calls and other events -- **GitHub + Discord:** Triaging and confirming user issues +- Supporting users and participating in community events +- **GitHub:** Triaging and confirming user issues - This list is incomplete! Similar contributions are also recognized. #### Privileges - All privileges of the [Contributor role](#level-1-l1---contributor), plus... -- Invitation to the `@Maintainer` role on [Discord](https://gatsby.dev/discord) - Invitation to the `Maintainers` team on GitHub. -- New name color on Discord: **Blue**. -- Invitation to the private `#maintainers` channel on Discord. -- Ability to moderate Discord to remove spam, harmful speech, etc. -- Ability to join the `@Moderator` role on Discord (optional, opt-in). - Ability to review GitHub PRs. - Ability to vote on _some_ initiatives (see [Voting](#voting) below). @@ -110,7 +104,6 @@ There is no strict minimum number of contributions needed to reach this level, a - Participate in the project as a team player. - Bring a friendly, welcoming voice to the Gatsby community. -- Be active on Discord, especially in the "Help" category. - Triage new issues. - Review pull requests. - Merge some, non-trivial community pull requests. @@ -118,7 +111,7 @@ There is no strict minimum number of contributions needed to reach this level, a #### Nomination -To be nominated, a nominee is expected to already be performing some of the responsibilities of a Maintainer over the course of at least a couple of weeks. You can apply through contacting one of the `@Team` members on Discord who then in turn will trigger a [Voting](#voting) process. +To be nominated, a nominee is expected to already be performing some of the responsibilities of a Maintainer over the course of at least a couple of weeks. You can apply through contacting one of the `@Team` members who then in turn will trigger a [Voting](#voting) process. In some rare cases, this role may be revoked by an **Admin**. However, under normal circumstances this role is granted for as long as the contributor wishes to engage with the project. @@ -131,8 +124,6 @@ Team is a special designation for employees of [Gatsby, Inc.](https://www.gatsby #### Privileges - All privileges of the [Maintainer role](#level-2-l2---maintainer), plus... -- `@Team` role on [Discord](https://gatsby.dev/discord) -- New name color on Discord: **Purple**. - `Team` on GitHub. - Ability to merge all GitHub PRs. - Ability to vote on all initiatives (see [Voting](#voting) below). @@ -165,9 +156,7 @@ Admin is an additional privilege inside the **Team** and is mainly an administra #### Privileges - All privileges of the [Team](#team), plus... -- `@Admin` role on [Discord](https://gatsby.dev/discord) - Administration privileges on GitHub. -- Administration privileges on Discord (optional). #### Responsibilities @@ -210,7 +199,7 @@ This process kicks off once a valid nomination has been made. **Who can vote:** All Maintainers (L2 and above). -1. A vote thread should be created in Discord #maintainers channel (the private channel for all maintainers). +1. A vote thread should be created in the private #maintainers channel. 2. A vote thread can be created by any maintainer, team member, or Admin. 3. Once a vote thread is created, existing Maintainers can discuss the nomination in private. 4. The normal 3 day voting & discussion window begins with the thread creation. @@ -229,9 +218,8 @@ Outlined below is the process for Code of Conduct violation reviews. Anyone may report a violation. Violations can be reported in the following ways: - In private, via email to [conduct@gatsbyjs.com](mailto:conduct@gatsbyjs.com). -- In private, via direct message to a team member on Discord. +- In private, via direct message to a team member. - In public, via a GitHub comment (mentioning `@gatsbyjs/team`). -- In public, via the project Discord server. ### Who gets involved? @@ -261,7 +249,7 @@ Responses will be determined by the reviewers on the basis of the information ga - taking no further action - issuing a reprimand (private or public) - asking for an apology (private or public) -- permanent ban from the GitHub org and Discord server +- permanent ban from the GitHub org - revoked contributor status --- diff --git a/docs/contributing/gatsby-style-guide.md b/docs/contributing/gatsby-style-guide.md index f63f22ac53c1a..b0d81dbe07994 100644 --- a/docs/contributing/gatsby-style-guide.md +++ b/docs/contributing/gatsby-style-guide.md @@ -39,7 +39,7 @@ Possible sources of great research materials: - blogposts (on gatsbyjs.com and other sites) - docs (on gatsbyjs.com and other sites) - video tutorials -- Discord or Twitter conversations +- Twitter conversations - search engine results - presentations you or others have given - textbooks @@ -53,8 +53,7 @@ because it requires you to take a technical (usually abstract) topic and explain it in a clear, accurate, and objective manner. You'll likely go through several rounds of proofreading and editing before you're happy with your writing. -Also, there's a community of contributors to support you. Bounce ideas off of them and ask for input on your writing in the -[Gatsby Discord](https://gatsby.dev/discord) and in the [GitHub repo](https://github.com/gatsbyjs/gatsby). +Also, there's a community of contributors to support you. Bounce ideas off of them and ask for input on your writing in the [GitHub repo](https://github.com/gatsbyjs/gatsby). ## Word choice diff --git a/docs/contributing/index.md b/docs/contributing/index.md index 5f39aec4cbf8f..19234d67070f3 100644 --- a/docs/contributing/index.md +++ b/docs/contributing/index.md @@ -17,14 +17,12 @@ In the interest of fostering an open and welcoming environment, we as contributo ### Gatsby news -- Follow [Gatsby](https://twitter.com/gatsbyjs) and [Gatsby Changelog](https://twitter.com/GatsbyChangelog) on Twitter - Read and discuss about [Request for Comment (RFC) proposals](/contributing/rfc-process) - Watch videos on [Gatsby's YouTube channel](https://www.youtube.com/c/Gatsbyjs/videos) to see past GatsbyConf presentations and tutorial walkthroughs - Follow the [official blog](/blog/) ### Get support -- [Discord Chat](https://gatsby.dev/discord): Real time chat with community & team members. Let's chat! - [GitHub Discussions](https://github.com/gatsbyjs/gatsby/discussions/categories/help): Best place to ask and discuss longer questions about Gatsby and its ecosystem. - [Feature Requests](https://github.com/gatsbyjs/gatsby/discussions/categories/ideas-feature-requests): Here's also where you can post your feature requests. - [GitHub Issues](https://github.com/gatsbyjs/gatsby/issues/new/choose): Have you found a bug or a problem in our documentation? Open an issue! @@ -44,7 +42,7 @@ We want contributing to Gatsby to be fun, enjoyable, and educational for anyone ### Help fellow users -Answering questions for fellow Gatsby users on [Discord](https://gatsby.dev/discord) or [GitHub Discussions](https://github.com/gatsbyjs/gatsby/discussions/categories/help) are valuable contributions. You can also help out users on issues and Pull Requests to contribute or fix their issues. +Answering questions for fellow Gatsby users on [GitHub Discussions](https://github.com/gatsbyjs/gatsby/discussions/categories/help) is a valuable contribution. You can also help out users on issues and Pull Requests to contribute or fix their issues. ### Contribute documentation diff --git a/docs/docs/cheat-sheet.md b/docs/docs/cheat-sheet.md index 5ef0f5bb24fe7..37f6ea7b4b2e4 100644 --- a/docs/docs/cheat-sheet.md +++ b/docs/docs/cheat-sheet.md @@ -181,9 +181,6 @@ Get the PDF: gatsby-cheat-sheet.pdf gatsbyjs.com

-

- twitter.com/gatsbyjs -

Gatsby CLI Commands

First, install the global executable: diff --git a/docs/docs/how-to/styling/tailwind-css.md b/docs/docs/how-to/styling/tailwind-css.md index 26f09a052f449..1c59534aebea4 100644 --- a/docs/docs/how-to/styling/tailwind-css.md +++ b/docs/docs/how-to/styling/tailwind-css.md @@ -6,7 +6,9 @@ Tailwind CSS is a utility-first CSS framework for rapidly building custom user i ## Installing and configuring Tailwind -Please follow the [official "Install Tailwind CSS with Gatsby" guide](https://tailwindcss.com/docs/guides/gatsby) to install and configure Tailwind CSS with Gatsby. Some important notes when configuring Tailwind with Gatsby: +### Tailwind v3 + +Please follow the [official "Install Tailwind CSS with Gatsby" guide](https://v3.tailwindcss.com/docs/guides/gatsby) to install and configure Tailwind CSS with Gatsby. Some important notes when configuring Tailwind with Gatsby: - It is **not recommended** that you include Gatsby's output directories (`public` and `.cache`) in your `content` array in your `tailwind.config.js`. You should only include your source files to have Tailwind working as expected. - If you use [GraphQL Typegen](/docs/how-to/local-development/graphql-typegen/) a file at `src/gatsby-types.d.ts` will be generated and with the default configuration for `content` in `tailwind.config.js` this will trigger an infinite loop. You have two options to fix this: @@ -22,6 +24,10 @@ Please follow the [official "Install Tailwind CSS with Gatsby" guide](https://ta } ``` +### Tailwind v4 + +Currently, there's no official dedicated page for installing Tailwind with Gatsby in the Tailwind v4 documentation. However, the [installation instructions](https://tailwindcss.com/docs/installation/using-postcss) and/or the [Upgrade Guide](https://tailwindcss.com/docs/upgrade-guide) from Tailwind v3 to v4 should suffice. + ## Other resources - [Tailwind Documentation](https://tailwindcss.com/) diff --git a/docs/docs/reference/release-notes/v3.0/index.md b/docs/docs/reference/release-notes/v3.0/index.md index 3cc62f00f90f0..87f17c335db5f 100644 --- a/docs/docs/reference/release-notes/v3.0/index.md +++ b/docs/docs/reference/release-notes/v3.0/index.md @@ -211,7 +211,7 @@ Gatsby Cloud now includes Hosting for all your Gatsby projects. `gatsby-plugin-g If you're using Gatsby v2 please install `gatsby-plugin-gatsby-cloud@^1.0.0`. For Gatsby v3 we’ve bumped `gatsby-plugin-gatsby-cloud` to `2.0.0`. It should be a straight-forward update, no additional changes from you are required. -Read more about `gatsby-plugin-gatsby-cloud` at the [README](/packages/gatsby-plugin-gatsby-cloud/). +Read more about `gatsby-plugin-gatsby-cloud` at the [README](/deprecated-packages/gatsby-plugin-gatsby-cloud/). ## Miscellaneous changes in plugins diff --git a/docs/docs/reference/release-notes/v4.14/index.md b/docs/docs/reference/release-notes/v4.14/index.md index ac856e1fe22c8..dad1e9acb5df1 100644 --- a/docs/docs/reference/release-notes/v4.14/index.md +++ b/docs/docs/reference/release-notes/v4.14/index.md @@ -93,7 +93,7 @@ Drupal now has Image CDN support. Enable it in your site by following the offici We updated our [default Starter template `gatsby-starter-default`](https://www.gatsbyjs.com/starters/gatsbyjs/gatsby-starter-default/) to contain references to documentation, tutorial, our monorepo examples folder, and more – and aligned its look-and-feel to that of our `gatsby new`/`npm init gatsby` experience. It shows you how to use TypeScript, Server Side Rendering, and Deferred Static Generation in your Gatsby application. -![Preview of the new landing page. At the top it says "Welcome to Gatsby", below that it links to the separate subpages like "TypeScript" or "Server Side Rendering". Then four blocks linking out to sections like the tutorial or examples are shown. The footer contains links to Discord, Documentation, and more.](https://user-images.githubusercontent.com/16143594/167383192-e33e7b23-fa70-4a3f-8238-97f6273cecdc.png) +![Preview of the new landing page. At the top it says "Welcome to Gatsby", below that it links to the separate subpages like "TypeScript" or "Server Side Rendering". Then four blocks linking out to sections like the tutorial or examples are shown. The footer contains links to Documentation and more.](https://user-images.githubusercontent.com/16143594/167383192-e33e7b23-fa70-4a3f-8238-97f6273cecdc.png) ## Notable bugfixes & improvements diff --git a/docs/docs/reference/release-notes/v4.21/index.md b/docs/docs/reference/release-notes/v4.21/index.md index 5bfd04cf2e71b..620a4b99ec73c 100644 --- a/docs/docs/reference/release-notes/v4.21/index.md +++ b/docs/docs/reference/release-notes/v4.21/index.md @@ -55,7 +55,7 @@ If you're already using `gatsby-plugin-mdx` v3 and want to migrate, you can foll We did our best to strike a balance between introducing meaningful breaking changes and keeping old behaviors. For example, while a lot of people use GraphQL nodes like `timeToRead` or `wordCount`, over the years it has become increasingly hard to fulfill every feature request and behavior that users wanted (e.g. correctly providing `timeToRead`/`wordCount` for every language is hard). One the one hand removing default fields like these means that you have to reimplement them on your own, but on the other hand this also means that you can more granularly customize them to your needs. Read [Extending the GraphQL MDX nodes](/plugins/gatsby-plugin-mdx#extending-the-graphql-mdx-nodes) for guidance on how to migrate. -If you have any questions along the way, post them either into the [umbrella discussion](https://github.com/gatsbyjs/gatsby/discussions/25068) or into the [`mdx-v2` channel on Discord](https://gatsby.dev/discord). +If you have any questions along the way, post them into the [umbrella discussion](https://github.com/gatsbyjs/gatsby/discussions/25068). The [using-mdx example](https://github.com/gatsbyjs/gatsby/tree/master/examples/using-mdx) also showcases some of the necessary migration steps. diff --git a/docs/docs/reference/release-notes/v4.24/index.md b/docs/docs/reference/release-notes/v4.24/index.md index bdb879bf3192c..de7c25ae8672e 100644 --- a/docs/docs/reference/release-notes/v4.24/index.md +++ b/docs/docs/reference/release-notes/v4.24/index.md @@ -27,7 +27,7 @@ You probably noticed that in the last couple of releases we mostly focused on bu For the Alpha the big new feature you'll be able to test out is [Partial Hydration](https://github.com/gatsbyjs/gatsby/discussions/36608). With Partial Hydration you gain the ability to mark specific parts of your site/application as “interactive”, while the rest of your site is static by default. This will result in shipping less JavaScript to your users and improved Lighthouse scores. For a quick preview of these great features, you can [watch the showcase on YouTube](https://www.youtube.com/watch?v=C-WrnfUm33k) -Please take part in the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609), **try it out**, and let us know what works and doesn't work. If Discord is more your jam, you can also join the [`gatsby-5` Discord channel](https://discord.gg/MhfpnT4cNg). +Please take part in the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609), **try it out**, and let us know what works and doesn't work. ## Updating File System Routes on data changes diff --git a/docs/docs/reference/release-notes/v5.0/index.md b/docs/docs/reference/release-notes/v5.0/index.md index ffe9a6ae947d0..e00d06b221629 100644 --- a/docs/docs/reference/release-notes/v5.0/index.md +++ b/docs/docs/reference/release-notes/v5.0/index.md @@ -98,7 +98,7 @@ Across the board we can see at least a 20% decrease in build time when using Sli For more information, read the [Using Slices How-To Guide](/docs/how-to/performance/using-slices/) or the [Slice API Reference Documentation](/docs/reference/built-in-components/gatsby-slice). -If you have any questions about the Slice API, you can comment on the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609) or [`gatsby-5` Discord channel](https://discord.gg/MhfpnT4cNg). +If you have any questions about the Slice API, you can comment on the [Gatsby 5 Umbrella Discussion](https://github.com/gatsbyjs/gatsby/discussions/36609). ## Partial Hydration (Beta) @@ -128,7 +128,7 @@ As a quick start, here's how you can use Partial Hydration in Gatsby 5 today: ``` - Add the `"use client"` directive to any component that needs to be a client component. You can see an example in the [gatsby-partial-hydration-starter](https://github.com/gatsbyjs/gatsby-partial-hydration-starter/blob/main/src/components/demo.js) -If you have any questions about Partial Hydration, you can comment on the [RFC: Partial Hydration](https://github.com/gatsbyjs/gatsby/discussions/36608) or [`partial-hydration` Discord channel](https://discord.gg/KEVcg3rup2). +If you have any questions about Partial Hydration, you can comment on the [RFC: Partial Hydration](https://github.com/gatsbyjs/gatsby/discussions/36608). ## GraphiQL v2 diff --git a/docs/docs/reference/release-notes/v5.6/index.md b/docs/docs/reference/release-notes/v5.6/index.md index 7f2c4753ba6d3..87b0d2b1ca776 100644 --- a/docs/docs/reference/release-notes/v5.6/index.md +++ b/docs/docs/reference/release-notes/v5.6/index.md @@ -27,7 +27,7 @@ In case you have missed the news, [Gatsby is joining Netlify](https://www.gatsby **Gatsby as a framework will continue to evolve and grow.** We’ve always shared with Netlify a mutual commitment to open-source and have never been more excited about Gatsby’s future. Many of Gatsby’s core contributors will join Netlify and continue to maintain the Gatsby framework. -Be sure to join [our Discord](https://gatsby.dev/discord), follow [Gatsby](https://twitter.com/gatsbyjs) and [Netlify](https://twitter.com/Netlify) on Twitter or continue to read these release notes to know when we share our plans for the future. +Follow [Gatsby](https://twitter.com/gatsbyjs) and [Netlify](https://twitter.com/Netlify) on Twitter or continue to read these release notes to know when we share our plans for the future. ## Head API supports context providers from `wrapRootElement` diff --git a/docs/docs/telemetry.md b/docs/docs/telemetry.md index 87fb041578d70..4ac538851b9ef 100644 --- a/docs/docs/telemetry.md +++ b/docs/docs/telemetry.md @@ -44,6 +44,6 @@ The access to the raw data is highly controlled, and we cannot identify individu ## What about sensitive data? (e.g. secrets) -We perform additional steps to ensure that secure data (e.g. environment variables used to store secrets for the build process) **do not** make their way into our analytics. [We strip logs, error messages, etc.](https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-telemetry/src/error-helpers.ts) of this sensitive data to ensure we _never_ gain access to this sensitive data. +We perform additional steps to ensure that secure data (e.g. environment variables used to store secrets for the build process) **do not** make their way into our analytics. [We strip logs, error messages, etc.](https://github.com/gatsbyjs/gatsby/blob/master/deprecated-packages/gatsby-telemetry/src/error-helpers.ts) of this sensitive data to ensure we _never_ gain access to this sensitive data. You can view all the information that is sent by Gatsby’s telemetry by setting the environment variable `GATSBY_TELEMETRY_DEBUG`to `1` to print the telemetry data instead of sending it over. diff --git a/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx b/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx index cab69078abc34..2016713f4fd45 100644 --- a/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx +++ b/docs/docs/tutorial/creating-a-source-plugin/whats-next/index.mdx @@ -26,13 +26,6 @@ Here are some more interesting pages in context of source plugins: - [Creating a Local Plugin](/docs/creating-a-local-plugin/) - [Maintaining a Plugin](/docs/how-to/plugins-and-themes/maintaining-a-plugin/) -## Join the community - -Use the following resources to share your Gatsby projects or to ask for help from the community: - -- [Discord](https://gatsby.dev/discord): Connect with other Gatsby developers. -- [Twitter](https://twitter.com/gatsbyjs): Tag @GatsbyJS, or use the hashtag #BuildWithGatsby to share what you're working on. - ## Stay informed Want to see what the Gatsby team is working on? Join the discussion on the following platforms: @@ -47,4 +40,4 @@ Help us make Gatsby even better! Here are some resources to help you make your f - [GitHub issues](https://github.com/gatsbyjs/gatsby/issues): - Look through our existing issues to find something to work on. Try the "help wanted" or "good first issue" labels. - Have an idea for something that could be improved? Check our existing issues to make sure it's not already listed. If it's not, create a new issue to start a conversation with the Gatsby team. -- [Contributing docs](/contributing/): These docs include more detailed information about how to contribute to our open-source code or docs. \ No newline at end of file +- [Contributing docs](/contributing/): These docs include more detailed information about how to contribute to our open-source code or docs. diff --git a/docs/docs/tutorial/getting-started/whats-next/index.mdx b/docs/docs/tutorial/getting-started/whats-next/index.mdx index 2c185d045c89c..0803900fb4f2b 100644 --- a/docs/docs/tutorial/getting-started/whats-next/index.mdx +++ b/docs/docs/tutorial/getting-started/whats-next/index.mdx @@ -24,13 +24,6 @@ Not sure where to start? Here are a few Gatsby features that weren't covered in - [Deferred static generation](/docs/how-to/rendering-options/using-deferred-static-generation): Speed up your site's build time by waiting to generate low-traffic pages until users request them at run time. - [Server-side rendering](/docs/how-to/rendering-options/using-server-side-rendering/): Pre-render a page with data that gets fetched when a user visits the page. With server-side rendering, you can add features like dynamic personalization, A/B testing, or other configuration based on location or user data. -## Join the community - -Use the following resources to share your Gatsby projects or to ask for help from the community: - -- [Discord](https://gatsby.dev/discord): Connect with other Gatsby developers. -- [Twitter](https://twitter.com/gatsbyjs): Tag @GatsbyJS, or use the hashtag #BuildWithGatsby to share what you're working on. - ## Stay informed Want to see what the Gatsby team is working on? Join the discussion on the following platforms: diff --git a/e2e-tests/adapters/cypress/e2e/headers.cy.ts b/e2e-tests/adapters/cypress/e2e/headers.cy.ts index cc034a9afcd7d..878974d48ceee 100644 --- a/e2e-tests/adapters/cypress/e2e/headers.cy.ts +++ b/e2e-tests/adapters/cypress/e2e/headers.cy.ts @@ -1,5 +1,7 @@ +import { applyTrailingSlashOption } from "../../utils" import { WorkaroundCachedResponse } from "../utils/dont-cache-responses-in-browser" +const TRAILING_SLASH = Cypress.env(`TRAILING_SLASH`) || `never` const PATH_PREFIX = Cypress.env(`PATH_PREFIX`) || `` describe("Headers", () => { @@ -75,7 +77,10 @@ describe("Headers", () => { } beforeEach(() => { - cy.intercept(PATH_PREFIX + "/", WorkaroundCachedResponse).as("index") + cy.intercept( + applyTrailingSlashOption(PATH_PREFIX, TRAILING_SLASH), + WorkaroundCachedResponse + ).as("index") cy.intercept( PATH_PREFIX + "/routes/ssg/static", WorkaroundCachedResponse @@ -114,7 +119,9 @@ describe("Headers", () => { }) it("should contain correct headers for index page", () => { - cy.visit("/").waitForRouteChange() + cy.visit( + applyTrailingSlashOption(Cypress.config().baseUrl, TRAILING_SLASH) + ).waitForRouteChange() checkHeaders("@index", { ...defaultHeaders, @@ -133,7 +140,12 @@ describe("Headers", () => { }) it("should contain correct headers for ssg page", () => { - cy.visit("routes/ssg/static").waitForRouteChange() + cy.visit( + applyTrailingSlashOption( + Cypress.config().baseUrl + "/routes/ssg/static", + TRAILING_SLASH + ) + ).waitForRouteChange() checkHeaders("@ssg", { ...defaultHeaders, diff --git a/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap b/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap index ff56c6b025dde..a481e0adb4f38 100644 --- a/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap +++ b/integration-tests/functions/__tests__/__snapshots__/functions-dev.js.snap @@ -80,13 +80,8 @@ Object { exports[`develop response formats returns json correctly 2`] = ` Object { - "access-control-allow-origin": "*", - "connection": "close", "content-length": "16", "content-type": "application/json; charset=utf-8", - "etag": "W/\\"10-R6td1pV+B+Xz9CJkNeaEI2kP+QY\\"", - "vary": "Accept-Encoding", - "x-powered-by": "Express", } `; @@ -94,13 +89,8 @@ exports[`develop response formats returns text correctly 1`] = `"I am typescript exports[`develop response formats returns text correctly 2`] = ` Object { - "access-control-allow-origin": "*", - "connection": "close", "content-length": "15", "content-type": "text/html; charset=utf-8", - "etag": "W/\\"f-zwggT56l/fnWBm4dI0PkA4E3i4E\\"", - "vary": "Accept-Encoding", - "x-powered-by": "Express", } `; diff --git a/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap b/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap index 72ee383760b68..f0b12be2ce761 100644 --- a/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap +++ b/integration-tests/functions/__tests__/__snapshots__/functions-prod.js.snap @@ -80,11 +80,8 @@ Object { exports[`production response formats returns json correctly 2`] = ` Object { - "connection": "close", "content-length": "16", "content-type": "application/json; charset=utf-8", - "etag": "W/\\"10-R6td1pV+B+Xz9CJkNeaEI2kP+QY\\"", - "x-powered-by": "Express", } `; @@ -92,11 +89,8 @@ exports[`production response formats returns text correctly 1`] = `"I am typescr exports[`production response formats returns text correctly 2`] = ` Object { - "connection": "close", "content-length": "15", "content-type": "text/html; charset=utf-8", - "etag": "W/\\"f-zwggT56l/fnWBm4dI0PkA4E3i4E\\"", - "x-powered-by": "Express", } `; diff --git a/integration-tests/functions/test-helpers.js b/integration-tests/functions/test-helpers.js index 0c457df8bc215..17d5ae1afb829 100644 --- a/integration-tests/functions/test-helpers.js +++ b/integration-tests/functions/test-helpers.js @@ -164,17 +164,23 @@ export function runTests(env, host) { const res = await fetchWithRetry(`${host}/api/i-am-json`) const result = await res.json() - const { date, ...headers } = Object.fromEntries(res.headers) + const relevantHeaders = { + 'content-type': res.headers.get('content-type'), + 'content-length': res.headers.get('content-length') + } expect(result).toMatchSnapshot() - expect(headers).toMatchSnapshot() + expect(relevantHeaders).toMatchSnapshot() }) test(`returns text correctly`, async () => { const res = await fetchWithRetry(`${host}/api/i-am-typescript`) const result = await res.text() - const { date, ...headers } = Object.fromEntries(res.headers) + const relevantHeaders = { + 'content-type': res.headers.get('content-type'), + 'content-length': res.headers.get('content-length') + } expect(result).toMatchSnapshot() - expect(headers).toMatchSnapshot() + expect(relevantHeaders).toMatchSnapshot() }) }) diff --git a/integration-tests/gatsby-cli/__tests__/new.js b/integration-tests/gatsby-cli/__tests__/new.js index 6cf61330aff15..17236ea86a497 100644 --- a/integration-tests/gatsby-cli/__tests__/new.js +++ b/integration-tests/gatsby-cli/__tests__/new.js @@ -1,6 +1,5 @@ import { GatsbyCLI } from "../test-helpers" import * as fs from "fs-extra" -import execa from "execa" import { join } from "path" import { getConfigStore } from "gatsby-core-utils" @@ -9,7 +8,14 @@ jest.setTimeout(MAX_TIMEOUT) const cwd = `execution-folder` -const clean = dir => execa(`yarn`, ["del-cli", dir]) +const clean = async dir => { + try { + await fs.rmdir(dir, { recursive: true }) + } catch { + // will throw when dir doesn't exist + // which is fine, we just want to ensure it's clean + } +} describe(`gatsby new`, () => { // make folder for us to create sites into diff --git a/integration-tests/gatsby-cli/package.json b/integration-tests/gatsby-cli/package.json index 8634fa11a5b41..a5790c6a67628 100644 --- a/integration-tests/gatsby-cli/package.json +++ b/integration-tests/gatsby-cli/package.json @@ -8,7 +8,6 @@ "devDependencies": { "babel-jest": "^29.3.1", "babel-preset-gatsby-package": "next", - "del-cli": "^3.0.1", "execa": "^4.0.1", "fs-extra": "^9.0.0", "gatsby": "next", diff --git a/integration-tests/lmdb-regeneration/.npmrc b/integration-tests/lmdb-regeneration/.npmrc deleted file mode 100644 index 1a456a8d1c769..0000000000000 --- a/integration-tests/lmdb-regeneration/.npmrc +++ /dev/null @@ -1 +0,0 @@ -build_from_source=true diff --git a/integration-tests/lmdb-regeneration/package.json b/integration-tests/lmdb-regeneration/package.json index 7cd2ca82f4e72..e235ae63db9ab 100644 --- a/integration-tests/lmdb-regeneration/package.json +++ b/integration-tests/lmdb-regeneration/package.json @@ -8,6 +8,7 @@ "scripts": { "build": "gatsby build", "clean": "gatsby clean", + "postinstall": "npm rebuild --build-from-source lmdb", "test": "jest --runInBand" }, "dependencies": { diff --git a/integration-tests/node-manifest/__tests__/create-node-manifest.test.js b/integration-tests/node-manifest/__tests__/create-node-manifest.test.js deleted file mode 100644 index 3c8cf2f176cb9..0000000000000 --- a/integration-tests/node-manifest/__tests__/create-node-manifest.test.js +++ /dev/null @@ -1,242 +0,0 @@ -// Must run `gatsby-dev --packages gatsby to get latest gatsby changes before running the tests -jest.setTimeout(100000) -const DEFAULT_MAX_DAYS_OLD = 30 - -const { - spawnGatsbyProcess, - runGatsbyClean, -} = require(`../utils/get-gatsby-process`) -const urling = require(`urling`) -const rimraf = require(`rimraf`) -const path = require(`path`) -const fs = require(`fs-extra`) - -const gatsbyCommandName = process.env.GATSBY_COMMAND_NAME || `develop` - -const manifestDir = path.join( - process.cwd(), - `public`, - `__node-manifests`, - `default-site-plugin` -) - -const pageDataDir = path.join(process.cwd(), `public`, `page-data`) - -const createManifestId = nodeId => `${gatsbyCommandName}-${nodeId}` - -const cleanNodeManifests = async () => { - console.log(`removing any lingering node manifest files at ${manifestDir}`) - return new Promise(resolve => rimraf(manifestDir, resolve)) -} - -const getManifestContents = async nodeId => - await fs.readJSON(path.join(manifestDir, `${createManifestId(nodeId)}.json`)) - -const pageDataContents = async pagePath => - await fs.readJSON(path.join(pageDataDir, pagePath, `page-data.json`)) - -const port = 8010 - -// see gatsby-node.js for where createNodeManifest was called -// and for the corresponding pages that were created with createPage -describe(`Node Manifest API in "gatsby ${gatsbyCommandName}"`, () => { - let gatsbyProcess - - beforeAll(async () => { - await cleanNodeManifests() - - gatsbyProcess = spawnGatsbyProcess(gatsbyCommandName, { - PORT: port, - }) - - if (gatsbyCommandName === `develop`) { - // wait for localhost - return urling(`http://localhost:${port}`) - } else if (gatsbyCommandName === `build`) { - // for gatsby build wait for the process to exit - return gatsbyProcess - } - }) - - afterAll(() => { - return new Promise(resolve => { - if ( - !gatsbyProcess || - gatsbyProcess.killed || - gatsbyProcess.exitCode !== null - ) { - return resolve() - } - - gatsbyProcess.on(`exit`, () => { - setImmediate(() => { - resolve() - }) - }) - - gatsbyProcess.kill() - }) - }) - - it(`Creates an accurate node manifest when using the ownerNodeId argument in createPage`, async () => { - const manifestFileContents = await getManifestContents(1) - - expect(manifestFileContents.node.id).toBe(`1`) - expect(manifestFileContents.page.path).toBe(`/one/`) - expect(manifestFileContents.foundPageBy).toBe(`ownerNodeId`) - }) - - it(`Creates an accurate node manifest when ownerNodeId isn't present but there's a matching "id" in pageContext`, async () => { - const manifestFileContents = await getManifestContents(2) - - expect(manifestFileContents.node.id).toBe(`2`) - expect(manifestFileContents.page.path).toBe(`/two/`) - expect(manifestFileContents.foundPageBy).toBe(`context.id`) - }) - - it(`Creates an accurate node manifest when ownerNodeId isn't present but there's a matching "slug" in pageContext`, async () => { - const manifestFileContents = await getManifestContents(5) - - expect(manifestFileContents.node.id).toBe(`5`) - expect(manifestFileContents.page.path).toBe(`/slug-test-path/`) - expect(manifestFileContents.foundPageBy).toBe(`context.slug`) - }) - - if (gatsbyCommandName === `build`) { - // this doesn't work in gatsby develop since query tracking - // only runs when visiting a page in browser. - it(`Creates a node manifest from the first tracked page it finds in query tracking`, async () => { - const manifestFileContents = await getManifestContents(3) - - expect(manifestFileContents.node.id).toBe(`3`) - expect( - [`/three/`, `/three-alternative/`].includes( - manifestFileContents.page.path - ) - ).toBe(true) - expect(manifestFileContents.foundPageBy).toBe(`queryTracking`) - }) - - // this doesn't work in gatsby develop since page-data.json files aren't written out - it(`Adds the correct manifestId to the pageData.json digest`, async () => { - const nodeId = `1` - const path = `one` - const pageData = await pageDataContents(path) - - expect(pageData.manifestId).toEqual(createManifestId(nodeId)) - }) - } - - it(`Creates a node manifest with a null page path when createNodeManifest is called but a page is not created for the provided node in the Gatsby site`, async () => { - const manifestFileContents = await getManifestContents(4) - - expect(manifestFileContents.node.id).toBe(`4`) - expect(manifestFileContents.page.path).toBe(null) - expect(manifestFileContents.foundPageBy).toBe(`none`) - }) - - it(`Creates a Node manifest for filesystem routes`, async () => { - const manifestFileContents = await getManifestContents(`filesystem-1`) - - expect(manifestFileContents.node.id).toBe(`filesystem-1`) - expect(manifestFileContents.page.path).toBe(`/filesystem-1/`) - expect(manifestFileContents.foundPageBy).toBe(`filesystem-route-api`) - }) - - it(`Creates a manifest for the node when updatedAt is included and is within ${DEFAULT_MAX_DAYS_OLD} days`, async () => { - const recentlyUpdatedNodeId = `updatedAt-1` - const staleNodeId = `updatedAt-2` - const recentlyUpdatedNodeManifest = await getManifestContents( - recentlyUpdatedNodeId - ) - - try { - await getManifestContents(staleNodeId) - throw new Error() - } catch (e) { - expect(e.message).toContain(`no such file or directory`) - expect(e.message).toContain(createManifestId(staleNodeId)) - } - - expect(recentlyUpdatedNodeManifest.node.id).toBe(recentlyUpdatedNodeId) - }) - - it(`Creates a correct node manifest for nodes in connection list queries`, async () => { - const manifestFileContents1 = await getManifestContents( - `connection-list-query-node` - ) - - expect(manifestFileContents1.node.id).toBe(`connection-list-query-node`) - expect(manifestFileContents1.page.path).toBe(`/connection-list-query-page/`) - - const manifestFileContents2 = await getManifestContents( - `connection-list-query-node-2` - ) - - expect(manifestFileContents2.node.id).toBe(`connection-list-query-node-2`) - expect(manifestFileContents2.page.path).toBe(`/connection-list-query-page/`) - }) - - it(`Creates a correct node manifest for nodes in connection list queries using staticQuery()`, async () => { - const manifestFileContents1 = await getManifestContents( - `static-query-list-query-node` - ) - - expect(manifestFileContents1.node.id).toBe(`static-query-list-query-node`) - expect(manifestFileContents1.page.path).toBe(`/static-query-list-query/`) - - const manifestFileContents2 = await getManifestContents( - `static-query-list-query-node-2` - ) - - expect(manifestFileContents2.node.id).toBe(`static-query-list-query-node-2`) - expect(manifestFileContents2.page.path).toBe(`/static-query-list-query/`) - }) -}) - -describe(`Node Manifest API in "gatsby ${gatsbyCommandName}"`, () => { - let gatsbyProcess - - beforeEach(async () => { - await runGatsbyClean() - - gatsbyProcess = spawnGatsbyProcess(gatsbyCommandName, { - DUMMY_NODE_MANIFEST_COUNT: 700, - NODE_MANIFEST_FILE_LIMIT: 500, - PORT: port, - }) - - if (gatsbyCommandName === `develop`) { - // wait for localhost - await urling(`http://localhost:${port}`) - } else if (gatsbyCommandName === `build`) { - // for gatsby build wait for the process to exit - return gatsbyProcess - } - }) - - afterAll(() => { - return new Promise(resolve => { - if ( - !gatsbyProcess || - gatsbyProcess.killed || - gatsbyProcess.exitCode !== null - ) { - return resolve() - } - - gatsbyProcess.on(`exit`, () => { - setImmediate(() => { - resolve() - }) - }) - - gatsbyProcess.kill() - }) - }) - - it(`Limits the number of node manifest files written to disk to 500`, async () => { - const nodeManifestFiles = fs.readdirSync(manifestDir) - expect(nodeManifestFiles).toHaveLength(500) - }) -}) diff --git a/integration-tests/node-manifest/gatsby-node.js b/integration-tests/node-manifest/gatsby-node.js deleted file mode 100644 index ecb11eb036378..0000000000000 --- a/integration-tests/node-manifest/gatsby-node.js +++ /dev/null @@ -1,219 +0,0 @@ -const commandName = process.env.NODE_ENV === `development` ? `develop` : `build` -const DEFAULT_MAX_DAYS_OLD = 30 -const createManifestId = nodeId => `${commandName}-${nodeId}` - -const DUMMY_NODE_MANIFEST_COUNT = process.env.DUMMY_NODE_MANIFEST_COUNT || 0 -const ONE_DAY = 1000 * 60 * 60 * 24 -const THIRTY_DAYS = ONE_DAY * 30 -const YESTERDAY = new Date() - ONE_DAY -const LOWER_CREATED_AT_TIME_LIMIT = YESTERDAY - THIRTY_DAYS -const UPPER_CREATED_AT_TIME_LIMIT = YESTERDAY - -function randomIntFromInterval(min, max) { - return Math.floor(Math.random() * (max - min + 1) + min) -} - -exports.sourceNodes = ({ actions }) => { - // template nodes - for (let id = 1; id < 6; id++) { - const node = { - id: `${id}`, - internal: { - type: `TestNode`, - contentDigest: `${id}`, - }, - } - - if (id === 5) { - node.slug = `test-slug` - } - - actions.createNode(node) - - actions.unstable_createNodeManifest({ - manifestId: createManifestId(id), - node, - }) - } - - // These nodes are intended to be added when running tests for the node manifest creation limit logic - for (let i = 0; i < DUMMY_NODE_MANIFEST_COUNT; i++) { - const id = `dummy-${i}` - const node = { - id, - internal: { - type: `TestNode`, - contentDigest: id, - }, - } - - const updatedAtUTC = new Date( - randomIntFromInterval( - LOWER_CREATED_AT_TIME_LIMIT, - UPPER_CREATED_AT_TIME_LIMIT - ) - ).toUTCString() - - actions.createNode(node) - - actions.unstable_createNodeManifest({ - manifestId: createManifestId(id), - node, - updatedAtUTC, - }) - } - - // filesystem route api node - const node = { - id: `filesystem-1`, - internal: { - type: `TestFSRouteType`, - contentDigest: `1`, - }, - } - - actions.createNode(node) - actions.unstable_createNodeManifest({ - manifestId: createManifestId(node.id), - node, - }) - const today = new Date() - const nodeTooOldToGetManifestCreated = new Date( - new Date().setDate(today.getDate() - (DEFAULT_MAX_DAYS_OLD + 1)) - ).toISOString() - - const nodeUpdated1 = { - id: `updatedAt-1`, - internal: { - type: `TestUpdatedAtType`, - contentDigest: `1`, - }, - updatedAt: today.toISOString(), - } - - const nodeUpdated2 = { - id: `updatedAt-2`, - internal: { - type: `TestUpdatedAtType`, - contentDigest: `1`, - }, - updatedAt: nodeTooOldToGetManifestCreated, - } - - actions.createNode(nodeUpdated1) - actions.createNode(nodeUpdated2) - actions.unstable_createNodeManifest({ - manifestId: createManifestId(nodeUpdated1.id), - node: nodeUpdated1, - updatedAtUTC: nodeUpdated1.updatedAt, - }) - - actions.unstable_createNodeManifest({ - manifestId: createManifestId(nodeUpdated2.id), - node: nodeUpdated2, - updatedAtUTC: nodeUpdated2.updatedAt, - }) - - const nodeForConnectionListQuery1 = { - id: `connection-list-query-node`, - title: `First connection list query node`, - internal: { - type: `TestConnectionListQueryType`, - contentDigest: `1`, - }, - } - const nodeForConnectionListQuery2 = { - id: `connection-list-query-node-2`, - title: `Second connection list query node`, - internal: { - type: `TestConnectionListQueryType`, - contentDigest: `2`, - }, - } - - actions.createNode(nodeForConnectionListQuery1) - actions.unstable_createNodeManifest({ - manifestId: createManifestId(nodeForConnectionListQuery1.id), - node: nodeForConnectionListQuery1, - }) - - actions.createNode(nodeForConnectionListQuery2) - actions.unstable_createNodeManifest({ - manifestId: createManifestId(nodeForConnectionListQuery2.id), - node: nodeForConnectionListQuery2, - }) - - const nodeForStaticQueryList1 = { - id: `static-query-list-query-node`, - title: `First static query list query node`, - internal: { - type: `TestConnectionStaticQueryListQueryType`, - contentDigest: `1`, - }, - } - const nodeForStaticQueryList2 = { - id: `static-query-list-query-node-2`, - title: `Second static query list query node`, - internal: { - type: `TestConnectionStaticQueryListQueryType`, - contentDigest: `2`, - }, - } - - actions.createNode(nodeForStaticQueryList1) - actions.unstable_createNodeManifest({ - manifestId: createManifestId(nodeForStaticQueryList1.id), - node: nodeForStaticQueryList1, - }) - - actions.createNode(nodeForStaticQueryList2) - actions.unstable_createNodeManifest({ - manifestId: createManifestId(nodeForStaticQueryList2.id), - node: nodeForStaticQueryList2, - }) -} - -/** - * The main way node manifests are mapped to pages is via the ownerNodeId argument to createPage. - * If it doesn't exist we either grab the first page with `id` in pageContext that matches to our nodeManifest's node id, or if that doesn't exist, the first page query where our nodeManifest's node id is queried. Node 2 and 3 are used to test this behaviour (in that order). - * - * Note that there's no page created for our node with an id of `4`. The Node Manifest API should account for the situation where the user didn't create a page for a node that a manifest was created for by a source plugin. - */ -exports.createPages = ({ actions }) => { - actions.createPage({ - path: `one`, - ownerNodeId: `1`, - component: require.resolve(`./src/templates/one.js`), - }) - - actions.createPage({ - path: `two`, - component: require.resolve(`./src/templates/two.js`), - context: { - id: `2`, - }, - }) - - actions.createPage({ - path: `two-alternative`, - component: require.resolve(`./src/templates/two.js`), - }) - - actions.createPage({ - path: `three`, - component: require.resolve(`./src/templates/three.js`), - }) - - actions.createPage({ - path: `three-alternative`, - component: require.resolve(`./src/templates/three.js`), - }) - - actions.createPage({ - path: `slug-test-path`, - context: { - slug: `test-slug`, - }, - component: require.resolve(`./src/templates/four.js`), - }) -} diff --git a/integration-tests/node-manifest/package.json b/integration-tests/node-manifest/package.json deleted file mode 100644 index b0893e5a50e9c..0000000000000 --- a/integration-tests/node-manifest/package.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "gatsby-node-manifest-test-site", - "version": "0.1.0", - "description": "A test site for Gatsby's node manifest API", - "main": "index.js", - "scripts": { - "test": "cross-env GATSBY_COMMAND_NAME=build jest --runInBand && cross-env GATSBY_COMMAND_NAME=develop jest --runInBand" - }, - "author": "Tyler Barnes ", - "license": "MIT", - "dependencies": { - "gatsby": "next", - "react": "^18.2.0", - "react-dom": "^18.2.0" - }, - "devDependencies": { - "cross-env": "^7.0.3", - "execa": "^5.1.1", - "fs-extra": "^10.0.0", - "jest": "^29.3.1", - "rimraf": "^3.0.2", - "urling": "^1.0.7" - } -} diff --git a/integration-tests/node-manifest/src/pages/connection-list-query-page.js b/integration-tests/node-manifest/src/pages/connection-list-query-page.js deleted file mode 100644 index 6b671e933f3a4..0000000000000 --- a/integration-tests/node-manifest/src/pages/connection-list-query-page.js +++ /dev/null @@ -1,23 +0,0 @@ -import React from "react" -import { graphql } from "gatsby" - -export default function ConnectionListQueryPage({ data }) { - return ( -

-

ConnectionListQueryPage

- {data.allTestConnectionListQueryType.nodes.map(({ title }) => ( -

{title}

- ))} -
- ) -} - -export const query = graphql` - query ConnectionListQueryPage { - allTestConnectionListQueryType { - nodes { - title - } - } - } -` diff --git a/integration-tests/node-manifest/src/pages/static-query-list-query.js b/integration-tests/node-manifest/src/pages/static-query-list-query.js deleted file mode 100644 index 19b9fa86babdb..0000000000000 --- a/integration-tests/node-manifest/src/pages/static-query-list-query.js +++ /dev/null @@ -1,24 +0,0 @@ -import React from "react" -import { graphql } from "gatsby" -import { useStaticQuery } from "gatsby" - -export default function TestConnectionStaticQueryListQueryType() { - const data = useStaticQuery(graphql` - query TestConnectionStaticQueryListQueryType { - allTestConnectionStaticQueryListQueryType { - nodes { - title - } - } - } - `) - - return ( -
-

TestConnectionStaticQueryListQueryType

- {data.allTestConnectionStaticQueryListQueryType.nodes.map(({ title }) => ( -

{title}

- ))} -
- ) -} diff --git a/integration-tests/node-manifest/src/pages/{TestFsRouteType.id}.js b/integration-tests/node-manifest/src/pages/{TestFsRouteType.id}.js deleted file mode 100644 index 6df49dcbc7383..0000000000000 --- a/integration-tests/node-manifest/src/pages/{TestFsRouteType.id}.js +++ /dev/null @@ -1,18 +0,0 @@ -import { graphql } from "gatsby" -import React from "react" - -export default function FSRouteTest({ data }) { - return
filesystem route. id {data.testFsRouteType.id}
-} - -export const query = graphql` - query FSRouteTest($id: String!) { - testFsRouteType(id: { eq: $id }) { - id - } - # querying this other node to make sure inferring the owner from context.id prevents this node from being the page owner - otherNode: testNode(id: { eq: "2" }) { - id - } - } -` diff --git a/integration-tests/node-manifest/src/templates/four.js b/integration-tests/node-manifest/src/templates/four.js deleted file mode 100644 index 1874dfccbc20f..0000000000000 --- a/integration-tests/node-manifest/src/templates/four.js +++ /dev/null @@ -1,17 +0,0 @@ -import { graphql } from "gatsby" -import React from "react" - -export default function Four({ data }) { - return
Template 4. Node by slug {data.testNode.slug}
-} - -export const query = graphql` - query SLUG_TEST($slug: String) { - testNode(slug: { eq: $slug }) { - id - } - otherNode: testNode(id: { eq: "2" }) { - id - } - } -` diff --git a/integration-tests/node-manifest/src/templates/one.js b/integration-tests/node-manifest/src/templates/one.js deleted file mode 100644 index 9abcb0a10daa8..0000000000000 --- a/integration-tests/node-manifest/src/templates/one.js +++ /dev/null @@ -1,18 +0,0 @@ -import { graphql } from "gatsby" -import React from "react" - -export default function One({ data }) { - return
Template 1. Node id {data.testNode.id}
-} - -export const query = graphql` - query { - testNode(id: { eq: "1" }) { - id - } - # querying this other node to make sure ownerNodeId in gatsby-node prevents this node from being the page owner - otherNode: testNode(id: { eq: "2" }) { - id - } - } -` diff --git a/integration-tests/node-manifest/src/templates/three.js b/integration-tests/node-manifest/src/templates/three.js deleted file mode 100644 index b0e7a8db42671..0000000000000 --- a/integration-tests/node-manifest/src/templates/three.js +++ /dev/null @@ -1,17 +0,0 @@ -import { graphql } from "gatsby" -import React from "react" - -export default function One({ data }) { - return
Template 3. Node id {data.testNode.id}
-} - -export const query = graphql` - query { - testNode(id: { eq: "3" }) { - id - } - otherNode: testNode(id: { eq: "2" }) { - id - } - } -` diff --git a/integration-tests/node-manifest/src/templates/two.js b/integration-tests/node-manifest/src/templates/two.js deleted file mode 100644 index 28deb3899e130..0000000000000 --- a/integration-tests/node-manifest/src/templates/two.js +++ /dev/null @@ -1,14 +0,0 @@ -import { graphql } from "gatsby" -import React from "react" - -export default function One({ data }) { - return
Template 2. Node id {data.testNode.id}
-} - -export const query = graphql` - query { - testNode(id: { eq: "2" }) { - id - } - } -` diff --git a/integration-tests/node-manifest/utils/get-gatsby-process.js b/integration-tests/node-manifest/utils/get-gatsby-process.js deleted file mode 100644 index 1a5ebd3852ef9..0000000000000 --- a/integration-tests/node-manifest/utils/get-gatsby-process.js +++ /dev/null @@ -1,17 +0,0 @@ -const execa = require(`execa`) -const path = require(`path`) - -function spawnGatsbyProcess(command = `develop`, env = {}) { - return execa(process.execPath, [`./node_modules/gatsby/cli.js`, command], { - stdio: [`inherit`, `inherit`, `inherit`], - env: { - ...process.env, - NODE_ENV: command === `develop` ? `development` : `production`, - ...env, - }, - }) -} - -exports.spawnGatsbyProcess = spawnGatsbyProcess - -exports.runGatsbyClean = () => spawnGatsbyProcess("clean") diff --git a/integration-tests/ssr/__tests__/ssr.js b/integration-tests/ssr/__tests__/ssr.js index af57d3ec849cb..a18a1b04a1e3d 100644 --- a/integration-tests/ssr/__tests__/ssr.js +++ b/integration-tests/ssr/__tests__/ssr.js @@ -129,7 +129,7 @@ describe(`SSR`, () => { it( title, async () => { - const src = path.join(__dirname, `/fixtures/`, fixture) + const src = path.join(__dirname, `fixtures`, fixture) const dest = getSrcLoc(fixture) fs.copySync(src, dest) diff --git a/integration-tests/structured-logging/__tests__/to-do.js b/integration-tests/structured-logging/__tests__/to-do.js index 5de5df637e747..4212f243b984b 100644 --- a/integration-tests/structured-logging/__tests__/to-do.js +++ b/integration-tests/structured-logging/__tests__/to-do.js @@ -7,7 +7,6 @@ const EventEmitter = require(`events`) const fetch = require(`node-fetch`) const fs = require(`fs-extra`) const path = require(`path`) -const cpy = require(`cpy`) const { first, last } = require(`lodash`) // const { groupBy, filter } = require(`lodash`) const joi = require(`joi`) @@ -380,7 +379,7 @@ describe(`develop`, () => { describe(`code change`, () => { beforeAll(() => { - return cpy( + return fs.cp( path.join(__dirname, "../src/pages/index.js"), path.join(__dirname, "../original/"), { @@ -428,12 +427,12 @@ describe(`develop`, () => { commonAssertionsForFailure(events) }) describe(`valid`, () => { - beforeAll(done => { + beforeAll(async done => { clearEvents() - cpy( + await fs.cp( path.join(__dirname, "../original/index.js"), - path.join(__dirname, "../src/pages/"), + path.join(__dirname, "../src/pages/index.js"), { overwrite: true, } diff --git a/integration-tests/structured-logging/package.json b/integration-tests/structured-logging/package.json index d9428847405bb..25da23b40af20 100644 --- a/integration-tests/structured-logging/package.json +++ b/integration-tests/structured-logging/package.json @@ -17,7 +17,6 @@ }, "devDependencies": { "babel-plugin-dynamic-import-node-sync": "^2.0.1", - "cpy": "^8.1.2", "fs-extra": "^10.0.0", "jest": "^29.3.1", "joi": "^17.4.0", diff --git a/jest.config.js b/jest.config.js index 2c922f7e9be87..a2c5a85b2bf40 100644 --- a/jest.config.js +++ b/jest.config.js @@ -143,7 +143,7 @@ const config = { `/examples/`, `/dist/`, `/node_modules/`, - `/packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/`, + `/deprecated-packages/gatsby-plugin-gatsby-cloud/src/__tests__/mocks/`, `/packages/gatsby/src/utils/worker/__tests__/test-helpers/`, `/deprecated-packages/`, `__tests__/fixtures`, diff --git a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md index c9f298e7233e5..4568542af70c2 100644 --- a/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md +++ b/packages/babel-plugin-remove-graphql-queries/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@5.15.0/packages/babel-plugin-remove-graphql-queries) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package babel-plugin-remove-graphql-queries + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-plugin-remove-graphql-queries@5.14.0/packages/babel-plugin-remove-graphql-queries) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/babel-plugin-remove-graphql-queries/package.json b/packages/babel-plugin-remove-graphql-queries/package.json index 9833297bd7a75..2936b77db6177 100644 --- a/packages/babel-plugin-remove-graphql-queries/package.json +++ b/packages/babel-plugin-remove-graphql-queries/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-remove-graphql-queries", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Jason Quense ", "repository": { "type": "git", @@ -11,12 +11,12 @@ "dependencies": { "@babel/runtime": "^7.20.13", "@babel/types": "^7.20.7", - "gatsby-core-utils": "^4.15.0-next.0" + "gatsby-core-utils": "^4.16.0-next.0" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/babel-preset-gatsby-package/CHANGELOG.md b/packages/babel-preset-gatsby-package/CHANGELOG.md index 82cc2a56ad64e..191e7b9de7017 100644 --- a/packages/babel-preset-gatsby-package/CHANGELOG.md +++ b/packages/babel-preset-gatsby-package/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@3.15.0/packages/babel-preset-gatsby-package) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package babel-preset-gatsby-package + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby-package@3.14.0/packages/babel-preset-gatsby-package) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/babel-preset-gatsby-package/package.json b/packages/babel-preset-gatsby-package/package.json index 57bd9ebe0095f..e74c8c350d4b4 100644 --- a/packages/babel-preset-gatsby-package/package.json +++ b/packages/babel-preset-gatsby-package/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby-package", - "version": "3.15.0-next.0", + "version": "3.16.0-next.0", "author": "Philipp Spiess ", "repository": { "type": "git", diff --git a/packages/babel-preset-gatsby/CHANGELOG.md b/packages/babel-preset-gatsby/CHANGELOG.md index 39c50ec7b922c..209263a395f2e 100644 --- a/packages/babel-preset-gatsby/CHANGELOG.md +++ b/packages/babel-preset-gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@3.15.0/packages/babel-preset-gatsby) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package babel-preset-gatsby + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/babel-preset-gatsby@3.14.0/packages/babel-preset-gatsby) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/babel-preset-gatsby/package.json b/packages/babel-preset-gatsby/package.json index bf9f1c588018a..5d2d04f252957 100644 --- a/packages/babel-preset-gatsby/package.json +++ b/packages/babel-preset-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "babel-preset-gatsby", - "version": "3.15.0-next.0", + "version": "3.16.0-next.0", "author": "Philipp Spiess ", "repository": { "type": "git", @@ -22,8 +22,8 @@ "babel-plugin-dynamic-import-node": "^2.3.3", "babel-plugin-macros": "^3.1.0", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-legacy-polyfills": "^3.15.0-next.0" + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-legacy-polyfills": "^3.16.0-next.0" }, "peerDependencies": { "@babel/core": "^7.11.6", @@ -38,7 +38,7 @@ }, "devDependencies": { "@babel/cli": "^7.20.7", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "slash": "^3.0.0" }, diff --git a/packages/create-gatsby/CHANGELOG.md b/packages/create-gatsby/CHANGELOG.md index 1fa475fffacef..970cb17061f82 100644 --- a/packages/create-gatsby/CHANGELOG.md +++ b/packages/create-gatsby/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@3.15.0/packages/create-gatsby) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package create-gatsby + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/create-gatsby@3.14.0/packages/create-gatsby) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/create-gatsby/package.json b/packages/create-gatsby/package.json index 237d87d17a9fe..6b253688e81b1 100644 --- a/packages/create-gatsby/package.json +++ b/packages/create-gatsby/package.json @@ -1,6 +1,6 @@ { "name": "create-gatsby", - "version": "3.15.0-next.0", + "version": "3.16.0-next.0", "main": "lib/index.js", "bin": "cli.js", "license": "MIT", @@ -27,7 +27,7 @@ "enquirer": "^2.3.6", "execa": "^5.1.1", "fs-extra": "^11.2.0", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "joi": "^17.9.2", "microbundle": "^0.15.1", "node-fetch": "^2.6.11", diff --git a/packages/gatsby-adapter-netlify/CHANGELOG.md b/packages/gatsby-adapter-netlify/CHANGELOG.md index 775f3aa9398a6..11ec64ec2406c 100644 --- a/packages/gatsby-adapter-netlify/CHANGELOG.md +++ b/packages/gatsby-adapter-netlify/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-adapter-netlify@1.3.0/packages/gatsby-adapter-netlify) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- don't treat timestamps as dynamic paths [#39340](https://github.com/gatsbyjs/gatsby/issues/39340) ([485fd85](https://github.com/gatsbyjs/gatsby/commit/485fd858d2ed096ab2a39a744b46fa6cdf7dee41)) + +### [1.2.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-adapter-netlify@1.2.1/packages/gatsby-adapter-netlify) (2025-08-05) + +#### Bug Fixes + +- don't treat timestamps as dynamic paths [#39340](https://github.com/gatsbyjs/gatsby/issues/39340) [#39341](https://github.com/gatsbyjs/gatsby/issues/39341) ([d00bf5e](https://github.com/gatsbyjs/gatsby/commit/d00bf5e47361a08cf9741f3c458c74c32b58f5f2)) + ## [1.2.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-adapter-netlify@1.2.0/packages/gatsby-adapter-netlify) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-adapter-netlify/package.json b/packages/gatsby-adapter-netlify/package.json index 9cc00155ed579..6e98ef7227f1f 100644 --- a/packages/gatsby-adapter-netlify/package.json +++ b/packages/gatsby-adapter-netlify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-adapter-netlify", - "version": "1.3.0-next.0", + "version": "1.4.0-next.0", "description": "Gatsby adapter for Netlify", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -38,13 +38,13 @@ "cookie": "^0.6.0", "fastq": "^1.15.0", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0" + "gatsby-core-utils": "^4.16.0-next.0" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@netlify/edge-functions": "^2.2.0", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "memfs": "^4.6.0", "rimraf": "^5.0.5", diff --git a/packages/gatsby-adapter-netlify/src/pretty-urls.ts b/packages/gatsby-adapter-netlify/src/pretty-urls.ts index a4658d447df3f..ca560380d7458 100644 --- a/packages/gatsby-adapter-netlify/src/pretty-urls.ts +++ b/packages/gatsby-adapter-netlify/src/pretty-urls.ts @@ -55,7 +55,7 @@ export function createStaticAssetsPathHandler(): { let isDynamic = false // dynamic routes syntax use characters that are reserved in a lot of filesystems // so if route is dynamic we should normalize filepath - if (routePath.includes(`:`) || routePath.includes(`*`)) { + if (routePath.includes(`/:`) || routePath.includes(`/*`)) { routePath = normalizeDynamicRoutePath(routePath) isDynamic = true } diff --git a/packages/gatsby-cli/CHANGELOG.md b/packages/gatsby-cli/CHANGELOG.md index d8376d2c26cbf..fabf0173a9357 100644 --- a/packages/gatsby-cli/CHANGELOG.md +++ b/packages/gatsby-cli/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@5.15.0/packages/gatsby-cli) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- support node 22 [#39349](https://github.com/gatsbyjs/gatsby/issues/39349) ([7451d2f](https://github.com/gatsbyjs/gatsby/commit/7451d2ff56c46b4d9ceebbb6e830fa83fcd29e5b)) + +#### Chores + +- remove Gatsby Discord references [#39351](https://github.com/gatsbyjs/gatsby/issues/39351) ([c3708b0](https://github.com/gatsbyjs/gatsby/commit/c3708b068abba3a26e5cf229d6d4dc5813884acd)) + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cli@5.14.0/packages/gatsby-cli) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-cli/package.json b/packages/gatsby-cli/package.json index db4b67c73f7d6..690c7ceb6aa78 100644 --- a/packages/gatsby-cli/package.json +++ b/packages/gatsby-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-cli", "description": "Gatsby command-line interface for creating new sites and running Gatsby commands", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bin": { "gatsby": "cli.js" @@ -26,12 +26,12 @@ "clipboardy": "^4.0.0", "common-tags": "^1.8.2", "convert-hrtime": "^3.0.0", - "create-gatsby": "^3.15.0-next.0", + "create-gatsby": "^3.16.0-next.0", "envinfo": "^7.10.0", "execa": "^5.1.1", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "hosted-git-info": "^3.0.8", "is-valid-path": "^0.1.1", "joi": "^17.9.2", @@ -61,7 +61,7 @@ "@sigmacomputing/babel-plugin-lodash": "^3.3.5", "@types/hosted-git-info": "^3.0.5", "@types/yargs": "^15.0.19", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "ink": "^3.2.0", "ink-spinner": "^4.0.3", diff --git a/packages/gatsby-cli/src/handlers/plugin.ts b/packages/gatsby-cli/src/handlers/plugin.ts index 52072f756ff80..ce15456289164 100644 --- a/packages/gatsby-cli/src/handlers/plugin.ts +++ b/packages/gatsby-cli/src/handlers/plugin.ts @@ -20,7 +20,6 @@ Creating a plugin: - Creating a Transformer Plugin (https://www.gatsbyjs.com/docs/how-to/plugins-and-themes/creating-a-transformer-plugin/) - Submit to Plugin Library (https://www.gatsbyjs.com/contributing/submit-to-plugin-library/) - Maintaining a Plugin (https://www.gatsbyjs.com/docs/how-to/plugins-and-themes/maintaining-a-plugin/) -- Join Discord #plugin-authoring channel to ask questions! (https://gatsby.dev/discord/) `) return case `ls`: { diff --git a/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap b/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap index b31d264917169..00be6dc2e6a68 100644 --- a/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap +++ b/packages/gatsby-cli/src/reporter/__tests__/__snapshots__/index.ts.snap @@ -38,7 +38,7 @@ Object { }, "docsUrl": "https://gatsby.dev/issue-how-to", "level": "ERROR", - "stack": Array [], + "stack": Any, "text": "Error created in Jest", "type": "UNKNOWN", } @@ -69,80 +69,7 @@ Object { "error": [Error: Message from new Error], "level": "ERROR", "pluginName": "gatsby-plugin-foo-bar", - "stack": Array [ - Object { - "columnNumber": 7, - "fileName": "/packages/gatsby-cli/src/reporter/__tests__/index.ts", - "functionName": null, - "lineNumber": 100, - }, - Object { - "columnNumber": 28, - "fileName": "/node_modules/jest-circus/build/utils.js", - "functionName": "Promise.then.completed", - "lineNumber": 293, - }, - Object { - "columnNumber": 10, - "fileName": "/node_modules/jest-circus/build/utils.js", - "functionName": "callAsyncCircusFn", - "lineNumber": 226, - }, - Object { - "columnNumber": 40, - "fileName": "/node_modules/jest-circus/build/run.js", - "functionName": "_callCircusTest", - "lineNumber": 297, - }, - Object { - "columnNumber": 3, - "fileName": "/node_modules/jest-circus/build/run.js", - "functionName": "_runTest", - "lineNumber": 233, - }, - Object { - "columnNumber": 9, - "fileName": "/node_modules/jest-circus/build/run.js", - "functionName": "_runTestsForDescribeBlock", - "lineNumber": 135, - }, - Object { - "columnNumber": 9, - "fileName": "/node_modules/jest-circus/build/run.js", - "functionName": "_runTestsForDescribeBlock", - "lineNumber": 130, - }, - Object { - "columnNumber": 3, - "fileName": "/node_modules/jest-circus/build/run.js", - "functionName": "run", - "lineNumber": 68, - }, - Object { - "columnNumber": 21, - "fileName": "/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js", - "functionName": "runAndTransformResultsToJestFormat", - "lineNumber": 122, - }, - Object { - "columnNumber": 19, - "fileName": "/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js", - "functionName": "jestAdapter", - "lineNumber": 79, - }, - Object { - "columnNumber": 16, - "fileName": "/node_modules/jest-runner/build/runTest.js", - "functionName": "runTestInternal", - "lineNumber": 367, - }, - Object { - "columnNumber": 34, - "fileName": "/node_modules/jest-runner/build/runTest.js", - "functionName": "runTest", - "lineNumber": 444, - }, - ], + "stack": Any, "text": "Error string passed to reporter Message from new Error", "type": "UNKNOWN", } @@ -157,7 +84,7 @@ Object { }, "docsUrl": "https://gatsby.dev/debug-html", "level": "ERROR", - "stack": Array [], + "stack": Any, "text": "\\"navigator\\" is not available during server-side rendering. Enable \\"DEV_SSR\\" to debug this during \\"gatsby develop\\".", "type": "HTML.COMPILATION", } @@ -171,7 +98,7 @@ Object { }, "docsUrl": "https://www.gatsbyjs.com/docs/gatsby-cli/#new", "level": "ERROR", - "stack": Array [], + "stack": Any, "text": "Error text is test123", "type": "PLUGIN", } @@ -186,7 +113,7 @@ Object { "docsUrl": "https://www.gatsbyjs.com/docs/gatsby-cli/#new", "level": "ERROR", "pluginName": "gatsby-plugin-foo-bar", - "stack": Array [], + "stack": Any, "text": "Error text is test123", "type": "PLUGIN", } diff --git a/packages/gatsby-cli/src/reporter/__tests__/index.ts b/packages/gatsby-cli/src/reporter/__tests__/index.ts index ea48500da41e7..91bce93482e22 100644 --- a/packages/gatsby-cli/src/reporter/__tests__/index.ts +++ b/packages/gatsby-cli/src/reporter/__tests__/index.ts @@ -83,7 +83,9 @@ describe(`report.error`, () => { const generatedError = getErrorMessages( reporterActions.createLog as jest.Mock )[0] - expect(generatedError).toMatchSnapshot() + expect(generatedError).toMatchSnapshot({ + stack: expect.any(Array), + }) }) it(`handles "String" signature correctly`, () => { @@ -91,7 +93,9 @@ describe(`report.error`, () => { const generatedError = getErrorMessages( reporterActions.createLog as jest.Mock )[0] - expect(generatedError).toMatchSnapshot() + expect(generatedError).toMatchSnapshot({ + stack: expect.any(Array), + }) }) it(`handles "String, Error, pluginName" signature correctly`, () => { @@ -103,7 +107,9 @@ describe(`report.error`, () => { const generatedError = getErrorMessages( reporterActions.createLog as jest.Mock )[0] - expect(generatedError).toMatchSnapshot() + expect(generatedError).toMatchSnapshot({ + stack: expect.any(Array), + }) }) it(`sets an error map if setErrorMap is called`, () => { @@ -136,7 +142,9 @@ describe(`report.error`, () => { const generatedError = getErrorMessages( reporterActions.createLog as jest.Mock )[0] - expect(generatedError).toMatchSnapshot() + expect(generatedError).toMatchSnapshot({ + stack: expect.any(Array), + }) }) // This is how it's potentially called from api-runner-node.js @@ -163,6 +171,8 @@ describe(`report.error`, () => { const generatedError = getErrorMessages( reporterActions.createLog as jest.Mock )[0] - expect(generatedError).toMatchSnapshot() + expect(generatedError).toMatchSnapshot({ + stack: expect.any(Array), + }) }) }) diff --git a/packages/gatsby-codemods/CHANGELOG.md b/packages/gatsby-codemods/CHANGELOG.md index 54cff720ba167..258c262b82615 100644 --- a/packages/gatsby-codemods/CHANGELOG.md +++ b/packages/gatsby-codemods/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@4.15.0/packages/gatsby-codemods) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-codemods + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-codemods@4.14.0/packages/gatsby-codemods) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-codemods/package.json b/packages/gatsby-codemods/package.json index 70a4885e667b0..0f81dad2ca9b4 100644 --- a/packages/gatsby-codemods/package.json +++ b/packages/gatsby-codemods/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-codemods", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "description": "A collection of codemod scripts for use with JSCodeshift that help migrate to newer versions of Gatsby.", "main": "index.js", "scripts": { @@ -37,7 +37,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@types/jscodeshift": "^0.11.11", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-core-utils/CHANGELOG.md b/packages/gatsby-core-utils/CHANGELOG.md index 48313930052f6..89c7f72b97b05 100644 --- a/packages/gatsby-core-utils/CHANGELOG.md +++ b/packages/gatsby-core-utils/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@4.15.0/packages/gatsby-core-utils) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-core-utils + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-core-utils@4.14.0/packages/gatsby-core-utils) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-core-utils/package.json b/packages/gatsby-core-utils/package.json index 48e7555ab2726..a3c65d263731d 100644 --- a/packages/gatsby-core-utils/package.json +++ b/packages/gatsby-core-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-core-utils", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "description": "A collection of gatsby utils used in different gatsby packages", "keywords": [ "gatsby", @@ -82,7 +82,7 @@ "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@types/ci-info": "2.0.0", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "del-cli": "^5.0.0", "is-uuid": "^1.0.2", diff --git a/packages/gatsby-cypress/CHANGELOG.md b/packages/gatsby-cypress/CHANGELOG.md index 7e68001fccf64..e2024d442a98d 100644 --- a/packages/gatsby-cypress/CHANGELOG.md +++ b/packages/gatsby-cypress/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@3.15.0/packages/gatsby-cypress) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-cypress + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-cypress@3.14.0/packages/gatsby-cypress) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-cypress/package.json b/packages/gatsby-cypress/package.json index a4bf837cde406..c48e70535cd5e 100644 --- a/packages/gatsby-cypress/package.json +++ b/packages/gatsby-cypress/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-cypress", - "version": "3.15.0-next.0", + "version": "3.16.0-next.0", "description": "Cypress tools for Gatsby projects", "main": "index.js", "types": "index.d.ts", @@ -21,7 +21,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-design-tokens/CHANGELOG.md b/packages/gatsby-design-tokens/CHANGELOG.md index b9cf4d09a6504..09e3c33681fe2 100644 --- a/packages/gatsby-design-tokens/CHANGELOG.md +++ b/packages/gatsby-design-tokens/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@5.15.0/packages/gatsby-design-tokens) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-design-tokens + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-design-tokens@5.14.0/packages/gatsby-design-tokens) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-design-tokens/package.json b/packages/gatsby-design-tokens/package.json index b3990e837b8f3..f38afb7d3dbb4 100644 --- a/packages/gatsby-design-tokens/package.json +++ b/packages/gatsby-design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-design-tokens", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "description": "Gatsby Design Tokens", "main": "dist/index.js", "module": "dist/index.esm.js", diff --git a/packages/gatsby-dev-cli/CHANGELOG.md b/packages/gatsby-dev-cli/CHANGELOG.md index 59d1609c4ed44..96fd7fb40383e 100644 --- a/packages/gatsby-dev-cli/CHANGELOG.md +++ b/packages/gatsby-dev-cli/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@5.15.0/packages/gatsby-dev-cli) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8)) + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-dev-cli@5.14.0/packages/gatsby-dev-cli) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-dev-cli/package.json b/packages/gatsby-dev-cli/package.json index 2da2ccf3d406d..3c0914e430e96 100644 --- a/packages/gatsby-dev-cli/package.json +++ b/packages/gatsby-dev-cli/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-dev-cli", "description": "CLI helpers for contributors working on Gatsby", - "version": "5.15.0-next.1", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bin": { "gatsby-dev": "./dist/index.js" @@ -27,7 +27,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-dev-cli#readme", diff --git a/packages/gatsby-graphiql-explorer/CHANGELOG.md b/packages/gatsby-graphiql-explorer/CHANGELOG.md index 63db93fdd8c70..6ccf55a86fd61 100644 --- a/packages/gatsby-graphiql-explorer/CHANGELOG.md +++ b/packages/gatsby-graphiql-explorer/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@3.15.0/packages/gatsby-graphiql-explorer) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- pin webpack [#39264](https://github.com/gatsbyjs/gatsby/issues/39264) ([dae8081](https://github.com/gatsbyjs/gatsby/commit/dae80818db95d2923ce40fc4292d6d91fbe1d75a)) + ### [3.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-graphiql-explorer@3.14.1/packages/gatsby-graphiql-explorer) (2025-04-07) #### Bug Fixes diff --git a/packages/gatsby-graphiql-explorer/package.json b/packages/gatsby-graphiql-explorer/package.json index 3f6d9c83e9d51..0ab45447d8ef7 100644 --- a/packages/gatsby-graphiql-explorer/package.json +++ b/packages/gatsby-graphiql-explorer/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-graphiql-explorer", - "version": "3.15.0-next.1", + "version": "3.16.0-next.0", "description": "GraphiQL IDE with custom features for Gatsby users", "main": "index.js", "scripts": { @@ -43,7 +43,7 @@ "@graphiql/react": "^0.18.0", "@graphiql/toolkit": "^0.8.4", "babel-loader": "^9.1.2", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "core-js": "^3.31.0", "cross-env": "^7.0.3", "css-loader": "^6.8.1", diff --git a/packages/gatsby-legacy-polyfills/CHANGELOG.md b/packages/gatsby-legacy-polyfills/CHANGELOG.md index 4fff7ed0b6a14..47170a1b217ad 100644 --- a/packages/gatsby-legacy-polyfills/CHANGELOG.md +++ b/packages/gatsby-legacy-polyfills/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@3.15.0/packages/gatsby-legacy-polyfills) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-legacy-polyfills + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-legacy-polyfills@3.14.0/packages/gatsby-legacy-polyfills) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-legacy-polyfills/package.json b/packages/gatsby-legacy-polyfills/package.json index 234a273d49d9b..00b27b3132c19 100644 --- a/packages/gatsby-legacy-polyfills/package.json +++ b/packages/gatsby-legacy-polyfills/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-legacy-polyfills", "description": "Polyfills for legacy browsers", - "version": "3.15.0-next.0", + "version": "3.16.0-next.0", "main": "dist/polyfills.js", "author": "Ward Peeters ", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-legacy-polyfills#readme", diff --git a/packages/gatsby-link/CHANGELOG.md b/packages/gatsby-link/CHANGELOG.md index 3e80de873cf95..7b3856f8bd68c 100644 --- a/packages/gatsby-link/CHANGELOG.md +++ b/packages/gatsby-link/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@5.15.0/packages/gatsby-link) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- fix navigate method type ([cddc252](https://github.com/gatsbyjs/gatsby/commit/cddc252bf4cac57486ed5f5b544d50e4a92ce769)) + ### [5.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-link@5.14.1/packages/gatsby-link) (2024-12-20) #### Bug Fixes diff --git a/packages/gatsby-link/package.json b/packages/gatsby-link/package.json index 2560a8586a4ed..b934f9861a9ff 100644 --- a/packages/gatsby-link/package.json +++ b/packages/gatsby-link/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-link", "description": "An enhanced Link component for Gatsby sites with support for resource prefetching", - "version": "5.15.0-next.1", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -23,7 +23,7 @@ }, "dependencies": { "@types/reach__router": "^1.3.10", - "gatsby-page-utils": "^3.15.0-next.1", + "gatsby-page-utils": "^3.16.0-next.0", "prop-types": "^15.8.1" }, "devDependencies": { diff --git a/packages/gatsby-page-utils/CHANGELOG.md b/packages/gatsby-page-utils/CHANGELOG.md index 62561d810e05b..b5aba73f2c23b 100644 --- a/packages/gatsby-page-utils/CHANGELOG.md +++ b/packages/gatsby-page-utils/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@3.15.0/packages/gatsby-page-utils) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8)) + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-page-utils@3.14.0/packages/gatsby-page-utils) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-page-utils/package.json b/packages/gatsby-page-utils/package.json index f2f545110bb77..3c76ad41fee47 100644 --- a/packages/gatsby-page-utils/package.json +++ b/packages/gatsby-page-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-page-utils", - "version": "3.15.0-next.1", + "version": "3.16.0-next.0", "description": "Gatsby library that helps creating pages", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -30,7 +30,7 @@ "bluebird": "^3.7.2", "chokidar": "^3.6.0", "fs-exists-cached": "^1.0.0", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "glob": "^7.2.3", "lodash": "^4.17.21", "micromatch": "^4.0.5" @@ -39,7 +39,7 @@ "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@types/micromatch": "^4.0.6", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "rimraf": "^5.0.5", "typescript": "^5.1.6" diff --git a/packages/gatsby-parcel-config/CHANGELOG.md b/packages/gatsby-parcel-config/CHANGELOG.md index bab3b985c03e6..5b6803a25b84c 100644 --- a/packages/gatsby-parcel-config/CHANGELOG.md +++ b/packages/gatsby-parcel-config/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-parcel-config@1.15.0/packages/gatsby-parcel-config) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-parcel-config + ## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-parcel-config@1.14.0/packages/gatsby-parcel-config) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-parcel-config/package.json b/packages/gatsby-parcel-config/package.json index 4325e86c73d98..598d62fa9f53b 100644 --- a/packages/gatsby-parcel-config/package.json +++ b/packages/gatsby-parcel-config/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-parcel-config", "main": "lib/index.json", - "version": "1.15.0-next.0", + "version": "1.16.0-next.0", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-config#readme", "description": "A minimal Parcel config for use in Gatsby", "repository": { @@ -14,7 +14,7 @@ "parcel": "2.x" }, "dependencies": { - "@gatsbyjs/parcel-namer-relative-to-cwd": "2.15.0-next.0", + "@gatsbyjs/parcel-namer-relative-to-cwd": "2.16.0-next.0", "@parcel/bundler-default": "2.8.3", "@parcel/compressor-raw": "2.8.3", "@parcel/namer-default": "2.8.3", diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md b/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md index 692a2ee8f66a9..8df17306a6f80 100644 --- a/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md +++ b/packages/gatsby-parcel-namer-relative-to-cwd/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.15.0](https://github.com/gatsbyjs/gatsby/commits/@gatsbyjs/parcel-namer-relative-to-cwd@2.15.0/packages/@gatsbyjs/parcel-namer-relative-to-cwd) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package @gatsbyjs/parcel-namer-relative-to-cwd + ## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/@gatsbyjs/parcel-namer-relative-to-cwd@2.14.0/packages/@gatsbyjs/parcel-namer-relative-to-cwd) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-parcel-namer-relative-to-cwd/package.json b/packages/gatsby-parcel-namer-relative-to-cwd/package.json index d23ea39c06145..3ce4bd559aa2e 100644 --- a/packages/gatsby-parcel-namer-relative-to-cwd/package.json +++ b/packages/gatsby-parcel-namer-relative-to-cwd/package.json @@ -1,7 +1,7 @@ { "name": "@gatsbyjs/parcel-namer-relative-to-cwd", "main": "lib/index.js", - "version": "2.15.0-next.0", + "version": "2.16.0-next.0", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-parcel-namer-relative-to-cwd#readme", "description": "Parcel namer that preserves directory structures to stabilize output and keep the hierarchy.", "author": "Michal Piechowiak ", @@ -19,12 +19,12 @@ "@babel/runtime": "^7.20.13", "@parcel/namer-default": "2.8.3", "@parcel/plugin": "2.8.3", - "gatsby-core-utils": "^4.15.0-next.0" + "gatsby-core-utils": "^4.16.0-next.0" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "scripts": { diff --git a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md index 61ed8158ab749..1a1048f64489e 100644 --- a/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md +++ b/packages/gatsby-plugin-benchmark-reporting/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@3.15.0/packages/gatsby-plugin-benchmark-reporting) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-benchmark-reporting + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-benchmark-reporting@3.14.0/packages/gatsby-plugin-benchmark-reporting) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-benchmark-reporting/package.json b/packages/gatsby-plugin-benchmark-reporting/package.json index a4dc97ba7dbf8..9cec9417b9f42 100644 --- a/packages/gatsby-plugin-benchmark-reporting/package.json +++ b/packages/gatsby-plugin-benchmark-reporting/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-benchmark-reporting", "description": "Gatsby Benchmark Reporting", - "version": "3.15.0-next.0", + "version": "3.16.0-next.0", "author": "Peter van der Zee ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,12 +16,12 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0" + "babel-preset-gatsby-package": "^3.16.0-next.0" }, "dependencies": { "@babel/runtime": "^7.20.13", "fast-glob": "^3.2.12", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "node-fetch": "^2.6.11" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md index d277486f403e9..843aa1fa881d5 100644 --- a/packages/gatsby-plugin-canonical-urls/CHANGELOG.md +++ b/packages/gatsby-plugin-canonical-urls/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@5.15.0/packages/gatsby-plugin-canonical-urls) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-canonical-urls + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-canonical-urls@5.14.0/packages/gatsby-plugin-canonical-urls) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-canonical-urls/package.json b/packages/gatsby-plugin-canonical-urls/package.json index 8caebf4f47cc7..a7b461adb60f7 100644 --- a/packages/gatsby-plugin-canonical-urls/package.json +++ b/packages/gatsby-plugin-canonical-urls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-canonical-urls", "description": "Add canonical links to HTML pages Gatsby generates.", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-canonical-urls#readme", diff --git a/packages/gatsby-plugin-catch-links/CHANGELOG.md b/packages/gatsby-plugin-catch-links/CHANGELOG.md index 125488d3e3f78..182c0c05455e3 100644 --- a/packages/gatsby-plugin-catch-links/CHANGELOG.md +++ b/packages/gatsby-plugin-catch-links/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@5.15.0/packages/gatsby-plugin-catch-links) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-catch-links + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-catch-links@5.14.0/packages/gatsby-plugin-catch-links) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-catch-links/package.json b/packages/gatsby-plugin-catch-links/package.json index 2ad2d78984231..ceddf39e62017 100644 --- a/packages/gatsby-plugin-catch-links/package.json +++ b/packages/gatsby-plugin-catch-links/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-catch-links", "description": "Intercepts local links from markdown and other non-react pages and does a client-side pushState to avoid the browser having to refresh the page.", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-catch-links#readme", diff --git a/packages/gatsby-plugin-coffeescript/CHANGELOG.md b/packages/gatsby-plugin-coffeescript/CHANGELOG.md index 45c808c8dda5d..00c47e99e8128 100644 --- a/packages/gatsby-plugin-coffeescript/CHANGELOG.md +++ b/packages/gatsby-plugin-coffeescript/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@5.15.0/packages/gatsby-plugin-coffeescript) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-coffeescript + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-coffeescript@5.14.0/packages/gatsby-plugin-coffeescript) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-coffeescript/package.json b/packages/gatsby-plugin-coffeescript/package.json index efff814e88a9b..ecb8c03553476 100644 --- a/packages/gatsby-plugin-coffeescript/package.json +++ b/packages/gatsby-plugin-coffeescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-coffeescript", "description": "Adds CoffeeScript support for Gatsby", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-coffeescript#readme", diff --git a/packages/gatsby-plugin-cxs/CHANGELOG.md b/packages/gatsby-plugin-cxs/CHANGELOG.md index fc429d67cdcb7..7e6a1e43f1a4a 100644 --- a/packages/gatsby-plugin-cxs/CHANGELOG.md +++ b/packages/gatsby-plugin-cxs/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@5.15.0/packages/gatsby-plugin-cxs) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-cxs + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-cxs@5.14.0/packages/gatsby-plugin-cxs) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-cxs/package.json b/packages/gatsby-plugin-cxs/package.json index b126a226c958d..3d73222b7483b 100644 --- a/packages/gatsby-plugin-cxs/package.json +++ b/packages/gatsby-plugin-cxs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-cxs", "description": "Gatsby plugin to add SSR support for ctx", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Chen-Tai Hou ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,10 +12,10 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "cxs": "^6.2.0", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-cxs#readme", "keywords": [ diff --git a/packages/gatsby-plugin-emotion/CHANGELOG.md b/packages/gatsby-plugin-emotion/CHANGELOG.md index 2272b12b2f654..c3a5e8b919d77 100644 --- a/packages/gatsby-plugin-emotion/CHANGELOG.md +++ b/packages/gatsby-plugin-emotion/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@8.15.0/packages/gatsby-plugin-emotion) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-emotion + ## [8.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-emotion@8.14.0/packages/gatsby-plugin-emotion) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-emotion/package.json b/packages/gatsby-plugin-emotion/package.json index 5f50e101229cc..9e922a8ada8c6 100644 --- a/packages/gatsby-plugin-emotion/package.json +++ b/packages/gatsby-plugin-emotion/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-emotion", "description": "Gatsby plugin to add support for Emotion", - "version": "8.15.0-next.0", + "version": "8.16.0-next.0", "author": "Tegan Churchill ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md index b3997446f93d1..f551e065885a2 100644 --- a/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-facebook-analytics/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@5.15.0/packages/gatsby-plugin-facebook-analytics) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-facebook-analytics + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-facebook-analytics@5.14.0/packages/gatsby-plugin-facebook-analytics) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-facebook-analytics/package.json b/packages/gatsby-plugin-facebook-analytics/package.json index 6a6d5004dd396..d34c0ad5ec341 100644 --- a/packages/gatsby-plugin-facebook-analytics/package.json +++ b/packages/gatsby-plugin-facebook-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-facebook-analytics", "description": "Gatsby plugin to add facebook analytics onto a site", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Yeison Daza ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-facebook-analytics#readme", diff --git a/packages/gatsby-plugin-feed/CHANGELOG.md b/packages/gatsby-plugin-feed/CHANGELOG.md index 52ef5b7519ab0..e99400948d52d 100644 --- a/packages/gatsby-plugin-feed/CHANGELOG.md +++ b/packages/gatsby-plugin-feed/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@5.15.0/packages/gatsby-plugin-feed) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-feed + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-feed@5.14.0/packages/gatsby-plugin-feed) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-feed/package.json b/packages/gatsby-plugin-feed/package.json index 642149502b8ab..b86077852337d 100644 --- a/packages/gatsby-plugin-feed/package.json +++ b/packages/gatsby-plugin-feed/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-feed", "description": "Creates an RSS feed for your Gatsby site.", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Nicholas Young ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,14 +10,14 @@ "@babel/runtime": "^7.20.13", "common-tags": "^1.8.2", "fs-extra": "^11.2.0", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "lodash.merge": "^4.6.2", "rss": "^1.2.2" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-feed#readme", diff --git a/packages/gatsby-plugin-flow/CHANGELOG.md b/packages/gatsby-plugin-flow/CHANGELOG.md index 51248c0f1a4a0..edcd7df84c8d2 100644 --- a/packages/gatsby-plugin-flow/CHANGELOG.md +++ b/packages/gatsby-plugin-flow/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@4.15.0/packages/gatsby-plugin-flow) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-flow + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-flow@4.14.0/packages/gatsby-plugin-flow) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-flow/package.json b/packages/gatsby-plugin-flow/package.json index b06d368fc053b..cc69dbf8d3ea6 100644 --- a/packages/gatsby-plugin-flow/package.json +++ b/packages/gatsby-plugin-flow/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-flow", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "description": "Provides drop-in support for Flow by adding @babel/preset-flow.", "main": "index.js", "scripts": { @@ -30,9 +30,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "peerDependencies": { "gatsby": "^5.0.0-next" diff --git a/packages/gatsby-plugin-fullstory/CHANGELOG.md b/packages/gatsby-plugin-fullstory/CHANGELOG.md index 0697807d9b2d5..f10c44aa10d0d 100644 --- a/packages/gatsby-plugin-fullstory/CHANGELOG.md +++ b/packages/gatsby-plugin-fullstory/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@5.15.0/packages/gatsby-plugin-fullstory) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-fullstory + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-fullstory@5.14.0/packages/gatsby-plugin-fullstory) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-fullstory/package.json b/packages/gatsby-plugin-fullstory/package.json index 992b33fcf1860..2846431017bf6 100644 --- a/packages/gatsby-plugin-fullstory/package.json +++ b/packages/gatsby-plugin-fullstory/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-fullstory", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "description": "Plugin to add the tracking code for Fullstory.com", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-google-analytics/CHANGELOG.md b/packages/gatsby-plugin-google-analytics/CHANGELOG.md index 15368281131b7..6b16bbe2e67f2 100644 --- a/packages/gatsby-plugin-google-analytics/CHANGELOG.md +++ b/packages/gatsby-plugin-google-analytics/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@5.15.0/packages/gatsby-plugin-google-analytics) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-google-analytics + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-analytics@5.14.0/packages/gatsby-plugin-google-analytics) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-google-analytics/package.json b/packages/gatsby-plugin-google-analytics/package.json index ae66c748f6f31..620c74a3bc323 100644 --- a/packages/gatsby-plugin-google-analytics/package.json +++ b/packages/gatsby-plugin-google-analytics/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-analytics", "description": "Gatsby plugin to add google analytics onto a site", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@testing-library/react": "^11.2.7", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-analytics#readme", diff --git a/packages/gatsby-plugin-google-gtag/CHANGELOG.md b/packages/gatsby-plugin-google-gtag/CHANGELOG.md index 0e95ce6c1ffc0..0c77503dd68e4 100644 --- a/packages/gatsby-plugin-google-gtag/CHANGELOG.md +++ b/packages/gatsby-plugin-google-gtag/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@5.15.0/packages/gatsby-plugin-google-gtag) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-google-gtag + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-gtag@5.14.0/packages/gatsby-plugin-google-gtag) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-google-gtag/package.json b/packages/gatsby-plugin-google-gtag/package.json index 53c46632006ff..4c92884591543 100644 --- a/packages/gatsby-plugin-google-gtag/package.json +++ b/packages/gatsby-plugin-google-gtag/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-gtag", "description": "Gatsby plugin to add google gtag onto a site", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Tyler Buchea ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,9 +13,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-gtag#readme", "keywords": [ diff --git a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md index 2f76eb106ddbb..ab0060eb87525 100644 --- a/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md +++ b/packages/gatsby-plugin-google-tagmanager/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@5.15.0/packages/gatsby-plugin-google-tagmanager) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-google-tagmanager + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-google-tagmanager@5.14.0/packages/gatsby-plugin-google-tagmanager) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-google-tagmanager/package.json b/packages/gatsby-plugin-google-tagmanager/package.json index 5189e115448a8..e030603478644 100644 --- a/packages/gatsby-plugin-google-tagmanager/package.json +++ b/packages/gatsby-plugin-google-tagmanager/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-google-tagmanager", "description": "Gatsby plugin to add google tagmanager onto a site", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Thijs Koerselman ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,9 +13,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-google-tagmanager#readme", "keywords": [ diff --git a/packages/gatsby-plugin-image/CHANGELOG.md b/packages/gatsby-plugin-image/CHANGELOG.md index 2e6378f21018d..da20a9b0cbf7c 100644 --- a/packages/gatsby-plugin-image/CHANGELOG.md +++ b/packages/gatsby-plugin-image/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [3.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@3.15.0/packages/gatsby-plugin-image) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8)) + ## [3.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-image@3.14.0/packages/gatsby-plugin-image) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-image/package.json b/packages/gatsby-plugin-image/package.json index 067ee8b98cf1a..d8f93ae0e3644 100644 --- a/packages/gatsby-plugin-image/package.json +++ b/packages/gatsby-plugin-image/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-image", - "version": "3.15.0-next.1", + "version": "3.16.0-next.0", "scripts": { "build": "npm-run-all --npm-path npm -s clean -p build:*", "postbuild": "prepend-directive --files=dist/gatsby-image.browser.js,dist/gatsby-image.browser.modern.js --directive=\"use client\"", @@ -87,13 +87,13 @@ "@babel/runtime": "^7.20.13", "@babel/traverse": "^7.20.13", "babel-jsx-utils": "^1.1.0", - "babel-plugin-remove-graphql-queries": "^5.15.0-next.0", + "babel-plugin-remove-graphql-queries": "^5.16.0-next.0", "camelcase": "^6.3.0", "chokidar": "^3.6.0", "common-tags": "^1.8.2", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "objectFitPolyfill": "^2.3.5", "prop-types": "^15.8.1" }, diff --git a/packages/gatsby-plugin-jss/CHANGELOG.md b/packages/gatsby-plugin-jss/CHANGELOG.md index 9b6d5e28d7a49..2ede0ed8e9a71 100644 --- a/packages/gatsby-plugin-jss/CHANGELOG.md +++ b/packages/gatsby-plugin-jss/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@5.15.0/packages/gatsby-plugin-jss) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-jss + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-jss@5.14.0/packages/gatsby-plugin-jss) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-jss/package.json b/packages/gatsby-plugin-jss/package.json index 218c9b7550c49..5bfacd4758f71 100644 --- a/packages/gatsby-plugin-jss/package.json +++ b/packages/gatsby-plugin-jss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-jss", "description": "Gatsby plugin that adds SSR support for JSS", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Vladimir Guguiev ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-jss#readme", diff --git a/packages/gatsby-plugin-layout/CHANGELOG.md b/packages/gatsby-plugin-layout/CHANGELOG.md index 5bf1fd0858127..4d0c1b2b2567c 100644 --- a/packages/gatsby-plugin-layout/CHANGELOG.md +++ b/packages/gatsby-plugin-layout/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@4.15.0/packages/gatsby-plugin-layout) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-layout + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-layout@4.14.0/packages/gatsby-plugin-layout) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-layout/package.json b/packages/gatsby-plugin-layout/package.json index 06ded0f224f1d..262b13a51ec9c 100644 --- a/packages/gatsby-plugin-layout/package.json +++ b/packages/gatsby-plugin-layout/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-layout", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "description": "Reimplements the behavior of layout components in gatsby@1, which was removed in version 2.", "main": "index.js", "scripts": { @@ -29,7 +29,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-less/CHANGELOG.md b/packages/gatsby-plugin-less/CHANGELOG.md index 9604f079f99fd..421d1c45d9f35 100644 --- a/packages/gatsby-plugin-less/CHANGELOG.md +++ b/packages/gatsby-plugin-less/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@7.15.0/packages/gatsby-plugin-less) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-less + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-less@7.14.0/packages/gatsby-plugin-less) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-less/package.json b/packages/gatsby-plugin-less/package.json index 964b7e2e6e9d7..dda125a735a99 100644 --- a/packages/gatsby-plugin-less/package.json +++ b/packages/gatsby-plugin-less/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-less", "description": "Gatsby plugin to add support for using Less", - "version": "7.15.0-next.0", + "version": "7.16.0-next.0", "author": "monastic.panic@gmail.com", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-less#readme", diff --git a/packages/gatsby-plugin-lodash/CHANGELOG.md b/packages/gatsby-plugin-lodash/CHANGELOG.md index a6340054ea7a5..d4424812cab1a 100644 --- a/packages/gatsby-plugin-lodash/CHANGELOG.md +++ b/packages/gatsby-plugin-lodash/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@6.15.0/packages/gatsby-plugin-lodash) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-lodash + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-lodash@6.14.0/packages/gatsby-plugin-lodash) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-lodash/package.json b/packages/gatsby-plugin-lodash/package.json index 5ca5c47aeb588..0d706bca011f0 100644 --- a/packages/gatsby-plugin-lodash/package.json +++ b/packages/gatsby-plugin-lodash/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-lodash", "description": "Easy modular Lodash builds. Adds the Lodash webpack & Babel plugins to your Gatsby build", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-lodash#readme", diff --git a/packages/gatsby-plugin-manifest/CHANGELOG.md b/packages/gatsby-plugin-manifest/CHANGELOG.md index 39a510cfb20f7..dc305faa5c1b1 100644 --- a/packages/gatsby-plugin-manifest/CHANGELOG.md +++ b/packages/gatsby-plugin-manifest/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@5.15.0/packages/gatsby-plugin-manifest) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-manifest + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-manifest@5.14.0/packages/gatsby-plugin-manifest) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-manifest/package.json b/packages/gatsby-plugin-manifest/package.json index 9ab0252bb5e71..c3469312e93e0 100644 --- a/packages/gatsby-plugin-manifest/package.json +++ b/packages/gatsby-plugin-manifest/package.json @@ -1,22 +1,22 @@ { "name": "gatsby-plugin-manifest", "description": "Gatsby plugin which adds a manifest.webmanifest to make sites progressive web apps", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "semver": "^7.5.3", "sharp": "^0.32.6" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-manifest#readme", diff --git a/packages/gatsby-plugin-mdx/CHANGELOG.md b/packages/gatsby-plugin-mdx/CHANGELOG.md index 3d2146283e4db..73858008cd351 100644 --- a/packages/gatsby-plugin-mdx/CHANGELOG.md +++ b/packages/gatsby-plugin-mdx/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@5.15.0/packages/gatsby-plugin-mdx) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- pin webpack [#39264](https://github.com/gatsbyjs/gatsby/issues/39264) ([dae8081](https://github.com/gatsbyjs/gatsby/commit/dae80818db95d2923ce40fc4292d6d91fbe1d75a)) + ### [5.14.1](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-mdx@5.14.1/packages/gatsby-plugin-mdx) (2025-04-07) #### Bug Fixes diff --git a/packages/gatsby-plugin-mdx/package.json b/packages/gatsby-plugin-mdx/package.json index 482367b4529f3..091d5b85190e7 100644 --- a/packages/gatsby-plugin-mdx/package.json +++ b/packages/gatsby-plugin-mdx/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-mdx", - "version": "5.15.0-next.1", + "version": "5.16.0-next.0", "description": "MDX integration for Gatsby", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -34,8 +34,8 @@ "deepmerge": "^4.3.1", "estree-util-build-jsx": "^2.2.2", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "gray-matter": "^4.0.3", "mdast-util-mdx": "^2.0.1", "mdast-util-to-hast": "^10.2.0", @@ -53,7 +53,7 @@ "@types/estree": "^1.0.1", "@types/mdast": "^3.0.11", "@types/unist": "^2.0.6", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "del-cli": "^5.0.0", "opentracing": "^0.14.7", diff --git a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md index 4b986075b4560..8203e4d4534e8 100644 --- a/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md +++ b/packages/gatsby-plugin-no-sourcemaps/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@5.15.0/packages/gatsby-plugin-no-sourcemaps) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-no-sourcemaps + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-no-sourcemaps@5.14.0/packages/gatsby-plugin-no-sourcemaps) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-no-sourcemaps/package.json b/packages/gatsby-plugin-no-sourcemaps/package.json index 53c8ad636ee67..a8b16ca552fd9 100644 --- a/packages/gatsby-plugin-no-sourcemaps/package.json +++ b/packages/gatsby-plugin-no-sourcemaps/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-no-sourcemaps", "description": "Disable sourcemaps when building JavaScript", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Stuart Taylor ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-plugin-nprogress/CHANGELOG.md b/packages/gatsby-plugin-nprogress/CHANGELOG.md index 90138bb58291f..aacc08bd0b7de 100644 --- a/packages/gatsby-plugin-nprogress/CHANGELOG.md +++ b/packages/gatsby-plugin-nprogress/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@5.15.0/packages/gatsby-plugin-nprogress) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-nprogress + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-nprogress@5.14.0/packages/gatsby-plugin-nprogress) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-nprogress/package.json b/packages/gatsby-plugin-nprogress/package.json index 6455cb5cb7103..823e7e748d76a 100644 --- a/packages/gatsby-plugin-nprogress/package.json +++ b/packages/gatsby-plugin-nprogress/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-nprogress", "description": "Shows page loading indicator when loading page resources is delayed", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-nprogress#readme", diff --git a/packages/gatsby-plugin-offline/CHANGELOG.md b/packages/gatsby-plugin-offline/CHANGELOG.md index 9da76b0e170f0..6126b2439ccd1 100644 --- a/packages/gatsby-plugin-offline/CHANGELOG.md +++ b/packages/gatsby-plugin-offline/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@6.15.0/packages/gatsby-plugin-offline) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-offline + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-offline@6.14.0/packages/gatsby-plugin-offline) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-offline/package.json b/packages/gatsby-plugin-offline/package.json index b306bae63b384..dde5996bb74df 100644 --- a/packages/gatsby-plugin-offline/package.json +++ b/packages/gatsby-plugin-offline/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-offline", "description": "Gatsby plugin which sets up a site to be able to run offline", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,7 +9,7 @@ "dependencies": { "@babel/runtime": "^7.20.13", "cheerio": "1.0.0-rc.12", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "glob": "^7.2.3", "idb-keyval": "^3.2.0", "lodash": "^4.17.21", @@ -18,10 +18,10 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cpy-cli": "^4.2.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "rewire": "^6.0.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-offline#readme", diff --git a/packages/gatsby-plugin-page-creator/CHANGELOG.md b/packages/gatsby-plugin-page-creator/CHANGELOG.md index 5b1b8ac8080c0..b8e44bdaad853 100644 --- a/packages/gatsby-plugin-page-creator/CHANGELOG.md +++ b/packages/gatsby-plugin-page-creator/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@5.15.0/packages/gatsby-plugin-page-creator) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8)) + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-page-creator@5.14.0/packages/gatsby-plugin-page-creator) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-page-creator/package.json b/packages/gatsby-plugin-page-creator/package.json index 546cf5031b4f4..0e84f50e0ef3a 100644 --- a/packages/gatsby-plugin-page-creator/package.json +++ b/packages/gatsby-plugin-page-creator/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-page-creator", - "version": "5.15.0-next.1", + "version": "5.16.0-next.0", "description": "Gatsby plugin that automatically creates pages from React components in specified directories", "main": "index.js", "scripts": { @@ -30,16 +30,16 @@ "chokidar": "^3.6.0", "fs-exists-cached": "^1.0.0", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-page-utils": "^3.15.0-next.1", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-page-utils": "^3.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "globby": "^11.1.0", "lodash": "^4.17.21" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-postcss/CHANGELOG.md b/packages/gatsby-plugin-postcss/CHANGELOG.md index d34aa1e1443c3..5b67642e44077 100644 --- a/packages/gatsby-plugin-postcss/CHANGELOG.md +++ b/packages/gatsby-plugin-postcss/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@6.15.0/packages/gatsby-plugin-postcss) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-postcss + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-postcss@6.14.0/packages/gatsby-plugin-postcss) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-postcss/package.json b/packages/gatsby-plugin-postcss/package.json index c1ab8678ea9ad..1acfa23f33f44 100644 --- a/packages/gatsby-plugin-postcss/package.json +++ b/packages/gatsby-plugin-postcss/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-postcss", "description": "Gatsby plugin to handle PostCSS", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Marat Dreizin ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-postcss#readme", diff --git a/packages/gatsby-plugin-preact/CHANGELOG.md b/packages/gatsby-plugin-preact/CHANGELOG.md index 7ed6b884e0afc..106d1290b9cc7 100644 --- a/packages/gatsby-plugin-preact/CHANGELOG.md +++ b/packages/gatsby-plugin-preact/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@7.15.0/packages/gatsby-plugin-preact) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-preact + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preact@7.14.0/packages/gatsby-plugin-preact) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-preact/package.json b/packages/gatsby-plugin-preact/package.json index 6760dca779f64..7ece4d802ce61 100644 --- a/packages/gatsby-plugin-preact/package.json +++ b/packages/gatsby-plugin-preact/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preact", "description": "A Gatsby plugin which replaces React with Preact", - "version": "7.15.0-next.0", + "version": "7.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "preact": "^10.15.1" }, diff --git a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md index 532a1d816b973..9608709cc5d99 100644 --- a/packages/gatsby-plugin-preload-fonts/CHANGELOG.md +++ b/packages/gatsby-plugin-preload-fonts/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@4.15.0/packages/gatsby-plugin-preload-fonts) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-preload-fonts + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-preload-fonts@4.14.0/packages/gatsby-plugin-preload-fonts) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-preload-fonts/package.json b/packages/gatsby-plugin-preload-fonts/package.json index 1da3e1a33e5fc..37dfb8ccff8c9 100644 --- a/packages/gatsby-plugin-preload-fonts/package.json +++ b/packages/gatsby-plugin-preload-fonts/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-preload-fonts", "description": "Gatsby plugin for preloading fonts per page", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "author": "Aaron Ross ", "main": "index.js", "bin": { @@ -15,7 +15,7 @@ "chalk": "^4.1.2", "date-fns": "^2.30.0", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "graphql-request": "^1.8.2", "progress": "^2.0.3", "puppeteer": "^3.3.0" @@ -23,7 +23,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "del-cli": "^5.1.0" }, diff --git a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md index 73074d4cba53d..60fc7d3153139 100644 --- a/packages/gatsby-plugin-react-css-modules/CHANGELOG.md +++ b/packages/gatsby-plugin-react-css-modules/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@5.15.0/packages/gatsby-plugin-react-css-modules) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-react-css-modules + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-css-modules@5.14.0/packages/gatsby-plugin-react-css-modules) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-react-css-modules/package.json b/packages/gatsby-plugin-react-css-modules/package.json index 805fe2703daba..aa96c7f6c0227 100644 --- a/packages/gatsby-plugin-react-css-modules/package.json +++ b/packages/gatsby-plugin-react-css-modules/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-css-modules", "description": "Gatsby plugin that transforms styleName to className using compile time CSS module resolution", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Ming Aldrich-Gan ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-css-modules#readme", diff --git a/packages/gatsby-plugin-react-helmet/CHANGELOG.md b/packages/gatsby-plugin-react-helmet/CHANGELOG.md index a02c0d5b67022..a5e54bc3aff80 100644 --- a/packages/gatsby-plugin-react-helmet/CHANGELOG.md +++ b/packages/gatsby-plugin-react-helmet/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@6.15.0/packages/gatsby-plugin-react-helmet) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-react-helmet + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-react-helmet@6.14.0/packages/gatsby-plugin-react-helmet) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-react-helmet/package.json b/packages/gatsby-plugin-react-helmet/package.json index 53c3757acf452..9553bcb45710a 100644 --- a/packages/gatsby-plugin-react-helmet/package.json +++ b/packages/gatsby-plugin-react-helmet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-react-helmet", "description": "Manage document head data with react-helmet. Provides drop-in server rendering support for Gatsby.", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-react-helmet#readme", diff --git a/packages/gatsby-plugin-sass/CHANGELOG.md b/packages/gatsby-plugin-sass/CHANGELOG.md index 1f03b01a565d1..bb98312634ff1 100644 --- a/packages/gatsby-plugin-sass/CHANGELOG.md +++ b/packages/gatsby-plugin-sass/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@6.15.0/packages/gatsby-plugin-sass) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-sass + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sass@6.14.0/packages/gatsby-plugin-sass) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-sass/package.json b/packages/gatsby-plugin-sass/package.json index cf2964fbde927..a5c604bc008f0 100644 --- a/packages/gatsby-plugin-sass/package.json +++ b/packages/gatsby-plugin-sass/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sass", "description": "Gatsby plugin to handle SCSS/Sass files", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Daniel Farrell ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,9 +15,9 @@ "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "autoprefixer": "^10.4.16", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sass#readme", "keywords": [ diff --git a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md index 1d6f1681fae06..1e7e3f824fad9 100644 --- a/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md +++ b/packages/gatsby-plugin-schema-snapshot/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@4.15.0/packages/gatsby-plugin-schema-snapshot) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-schema-snapshot + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-schema-snapshot@4.14.0/packages/gatsby-plugin-schema-snapshot) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-schema-snapshot/package.json b/packages/gatsby-plugin-schema-snapshot/package.json index e61f15df95648..775ed22b95f87 100644 --- a/packages/gatsby-plugin-schema-snapshot/package.json +++ b/packages/gatsby-plugin-schema-snapshot/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-schema-snapshot", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "main": "index.js", "license": "MIT", "keywords": [ diff --git a/packages/gatsby-plugin-sharp/CHANGELOG.md b/packages/gatsby-plugin-sharp/CHANGELOG.md index 43b60bbd09cfa..4f420270891a0 100644 --- a/packages/gatsby-plugin-sharp/CHANGELOG.md +++ b/packages/gatsby-plugin-sharp/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@5.15.0/packages/gatsby-plugin-sharp) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-sharp + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sharp@5.14.0/packages/gatsby-plugin-sharp) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-sharp/package.json b/packages/gatsby-plugin-sharp/package.json index 30e2d6671c0fe..e0b206400bf33 100644 --- a/packages/gatsby-plugin-sharp/package.json +++ b/packages/gatsby-plugin-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sharp", "description": "Wrapper of the Sharp image manipulation library for Gatsby plugins", - "version": "5.15.0-next.1", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,8 +13,8 @@ "debug": "^4.3.4", "filenamify": "^4.3.0", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "lodash": "^4.17.21", "probe-image-size": "^7.2.3", "semver": "^7.5.3", @@ -23,9 +23,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^3.15.0-next.1" + "gatsby-plugin-image": "^3.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sharp#readme", "keywords": [ diff --git a/packages/gatsby-plugin-sitemap/CHANGELOG.md b/packages/gatsby-plugin-sitemap/CHANGELOG.md index c824e9bcc0904..79d33c92f6c66 100644 --- a/packages/gatsby-plugin-sitemap/CHANGELOG.md +++ b/packages/gatsby-plugin-sitemap/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@6.15.0/packages/gatsby-plugin-sitemap) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-sitemap + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-sitemap@6.14.0/packages/gatsby-plugin-sitemap) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-sitemap/package.json b/packages/gatsby-plugin-sitemap/package.json index e9adfb63a8f6c..555f101f921e2 100644 --- a/packages/gatsby-plugin-sitemap/package.json +++ b/packages/gatsby-plugin-sitemap/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-sitemap", "description": "Gatsby plugin that automatically creates a sitemap for your site", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "contributors": [ "Alex Moon ", "Nicholas Young " @@ -18,9 +18,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-sitemap#readme", "keywords": [ diff --git a/packages/gatsby-plugin-styled-components/CHANGELOG.md b/packages/gatsby-plugin-styled-components/CHANGELOG.md index e25e038454ce7..6806fda540c2f 100644 --- a/packages/gatsby-plugin-styled-components/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-components/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@6.15.0/packages/gatsby-plugin-styled-components) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-styled-components + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-components@6.14.0/packages/gatsby-plugin-styled-components) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-styled-components/package.json b/packages/gatsby-plugin-styled-components/package.json index cbd280c46faab..96239411fb9a5 100644 --- a/packages/gatsby-plugin-styled-components/package.json +++ b/packages/gatsby-plugin-styled-components/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-components", "description": "Gatsby plugin to add support for styled components", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Guten Ye ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-components#readme", diff --git a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md index d214b17f7c728..6e5658369b400 100644 --- a/packages/gatsby-plugin-styled-jsx/CHANGELOG.md +++ b/packages/gatsby-plugin-styled-jsx/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@6.15.0/packages/gatsby-plugin-styled-jsx) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-styled-jsx + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styled-jsx@6.14.0/packages/gatsby-plugin-styled-jsx) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-styled-jsx/package.json b/packages/gatsby-plugin-styled-jsx/package.json index 30bcf6a7e717b..dc40ce4e0a63e 100644 --- a/packages/gatsby-plugin-styled-jsx/package.json +++ b/packages/gatsby-plugin-styled-jsx/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styled-jsx", "description": "Adds SSR support for styled-jsx", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Tim Suchanek ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-styled-jsx#readme", diff --git a/packages/gatsby-plugin-styletron/CHANGELOG.md b/packages/gatsby-plugin-styletron/CHANGELOG.md index 9d2833824d518..e189568f61fc3 100644 --- a/packages/gatsby-plugin-styletron/CHANGELOG.md +++ b/packages/gatsby-plugin-styletron/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@8.15.0/packages/gatsby-plugin-styletron) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-styletron + ## [8.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-styletron@8.14.0/packages/gatsby-plugin-styletron) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-styletron/package.json b/packages/gatsby-plugin-styletron/package.json index 8270d15e5c0ad..a34b682745530 100644 --- a/packages/gatsby-plugin-styletron/package.json +++ b/packages/gatsby-plugin-styletron/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-styletron", "description": "A Gatsby plugin for styletron with built-in server-side rendering support", - "version": "8.15.0-next.0", + "version": "8.16.0-next.0", "author": "Nadiia Dmytrenko ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "styletron-engine-atomic": "^1.5.0", "styletron-react": "^6.1.0" diff --git a/packages/gatsby-plugin-stylus/CHANGELOG.md b/packages/gatsby-plugin-stylus/CHANGELOG.md index 6a9a5b24159ac..dc82eef1ee21e 100644 --- a/packages/gatsby-plugin-stylus/CHANGELOG.md +++ b/packages/gatsby-plugin-stylus/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@5.15.0/packages/gatsby-plugin-stylus) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-stylus + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-stylus@5.14.0/packages/gatsby-plugin-stylus) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-stylus/package.json b/packages/gatsby-plugin-stylus/package.json index ea254b0275aba..7f26ab9640cc9 100644 --- a/packages/gatsby-plugin-stylus/package.json +++ b/packages/gatsby-plugin-stylus/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-stylus", "description": "Gatsby support for Stylus", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Ian Sinnott ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-stylus#readme", diff --git a/packages/gatsby-plugin-subfont/CHANGELOG.md b/packages/gatsby-plugin-subfont/CHANGELOG.md index bcf830350714e..88e912ea256c1 100644 --- a/packages/gatsby-plugin-subfont/CHANGELOG.md +++ b/packages/gatsby-plugin-subfont/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@5.15.0/packages/gatsby-plugin-subfont) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-subfont + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-subfont@5.14.0/packages/gatsby-plugin-subfont) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-subfont/package.json b/packages/gatsby-plugin-subfont/package.json index d0c82cf0eff31..43ea9af828ce2 100644 --- a/packages/gatsby-plugin-subfont/package.json +++ b/packages/gatsby-plugin-subfont/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-subfont", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "description": "Runs the font delivery optimizing CLI tool subfont on the homepage of your site during the Gatsby build", "main": "index.js", "scripts": { @@ -30,7 +30,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-twitter/CHANGELOG.md b/packages/gatsby-plugin-twitter/CHANGELOG.md index 715861d359213..b111f1cfbff64 100644 --- a/packages/gatsby-plugin-twitter/CHANGELOG.md +++ b/packages/gatsby-plugin-twitter/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@5.15.0/packages/gatsby-plugin-twitter) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-twitter + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-twitter@5.14.0/packages/gatsby-plugin-twitter) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-twitter/package.json b/packages/gatsby-plugin-twitter/package.json index 91255cc41e8d0..5af071024f819 100644 --- a/packages/gatsby-plugin-twitter/package.json +++ b/packages/gatsby-plugin-twitter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-twitter", "description": "Loads the Twitter JavaScript for embedding tweets.", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,9 +12,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-plugin-twitter#readme", "keywords": [ diff --git a/packages/gatsby-plugin-typescript/CHANGELOG.md b/packages/gatsby-plugin-typescript/CHANGELOG.md index 2ffef0d97916e..b345448f8bafe 100644 --- a/packages/gatsby-plugin-typescript/CHANGELOG.md +++ b/packages/gatsby-plugin-typescript/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@5.15.0/packages/gatsby-plugin-typescript) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-typescript + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typescript@5.14.0/packages/gatsby-plugin-typescript) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-typescript/package.json b/packages/gatsby-plugin-typescript/package.json index de596adbc9376..d76e119bd9695 100644 --- a/packages/gatsby-plugin-typescript/package.json +++ b/packages/gatsby-plugin-typescript/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typescript", "description": "Adds TypeScript support to Gatsby", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,12 +16,12 @@ "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/preset-typescript": "^7.18.6", "@babel/runtime": "^7.20.13", - "babel-plugin-remove-graphql-queries": "^5.15.0-next.0" + "babel-plugin-remove-graphql-queries": "^5.16.0-next.0" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "peerDependencies": { diff --git a/packages/gatsby-plugin-typography/CHANGELOG.md b/packages/gatsby-plugin-typography/CHANGELOG.md index 5f659fb80533f..281cd1b8af564 100644 --- a/packages/gatsby-plugin-typography/CHANGELOG.md +++ b/packages/gatsby-plugin-typography/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@5.15.0/packages/gatsby-plugin-typography) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-typography + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-typography@5.14.0/packages/gatsby-plugin-typography) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-typography/package.json b/packages/gatsby-plugin-typography/package.json index 608fe88f96fe6..9a3e691a0d77f 100644 --- a/packages/gatsby-plugin-typography/package.json +++ b/packages/gatsby-plugin-typography/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-plugin-typography", "description": "Gatsby plugin to setup server rendering of Typography.js' CSS", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -12,7 +12,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "react": "^18.2.0", "react-dom": "^18.2.0", diff --git a/packages/gatsby-plugin-utils/CHANGELOG.md b/packages/gatsby-plugin-utils/CHANGELOG.md index 4168a3a368f66..3974658fd3cc5 100644 --- a/packages/gatsby-plugin-utils/CHANGELOG.md +++ b/packages/gatsby-plugin-utils/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@4.15.0/packages/gatsby-plugin-utils) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-plugin-utils + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-plugin-utils@4.14.0/packages/gatsby-plugin-utils) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-plugin-utils/package.json b/packages/gatsby-plugin-utils/package.json index 935b610a2023f..d1febb3b3770f 100644 --- a/packages/gatsby-plugin-utils/package.json +++ b/packages/gatsby-plugin-utils/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-plugin-utils", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "description": "Gatsby utils that help creating plugins", "main": "dist/index.js", "exports": { @@ -49,8 +49,8 @@ "@babel/runtime": "^7.20.13", "fastq": "^1.16.0", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-sharp": "^1.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-sharp": "^1.16.0-next.0", "graphql-compose": "^9.0.10", "import-from": "^4.0.0", "joi": "^17.11.0", @@ -59,7 +59,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "msw": "^1.2.2", "rimraf": "^5.0.1", diff --git a/packages/gatsby-react-router-scroll/CHANGELOG.md b/packages/gatsby-react-router-scroll/CHANGELOG.md index c189d145fbf43..0971341cb4626 100644 --- a/packages/gatsby-react-router-scroll/CHANGELOG.md +++ b/packages/gatsby-react-router-scroll/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@6.15.0/packages/gatsby-react-router-scroll) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-react-router-scroll + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-react-router-scroll@6.14.0/packages/gatsby-react-router-scroll) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-react-router-scroll/package.json b/packages/gatsby-react-router-scroll/package.json index 51b223a266965..8dfd72a993707 100644 --- a/packages/gatsby-react-router-scroll/package.json +++ b/packages/gatsby-react-router-scroll/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-react-router-scroll", "description": "React Router scroll management forked from https://github.com/ytase/react-router-scroll for Gatsby", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Jimmy Jia", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "babel-plugin-dev-expression": "^0.2.3", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "history": "^5.3.0" }, diff --git a/packages/gatsby-remark-autolink-headers/CHANGELOG.md b/packages/gatsby-remark-autolink-headers/CHANGELOG.md index 8012fc47c721c..a485a20e54def 100644 --- a/packages/gatsby-remark-autolink-headers/CHANGELOG.md +++ b/packages/gatsby-remark-autolink-headers/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@6.15.0/packages/gatsby-remark-autolink-headers) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-autolink-headers + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-autolink-headers@6.14.0/packages/gatsby-remark-autolink-headers) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-autolink-headers/package.json b/packages/gatsby-remark-autolink-headers/package.json index 97dfbfe4b327d..8b3ae1fdb07c5 100644 --- a/packages/gatsby-remark-autolink-headers/package.json +++ b/packages/gatsby-remark-autolink-headers/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-autolink-headers", "description": "Gatsby plugin to autolink headers in markdown processed by Remark", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,9 +16,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-autolink-headers#readme", "keywords": [ diff --git a/packages/gatsby-remark-code-repls/CHANGELOG.md b/packages/gatsby-remark-code-repls/CHANGELOG.md index c9b58dcc2cac6..edbc01cac1404 100644 --- a/packages/gatsby-remark-code-repls/CHANGELOG.md +++ b/packages/gatsby-remark-code-repls/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@7.15.0/packages/gatsby-remark-code-repls) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-code-repls + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-code-repls@7.14.0/packages/gatsby-remark-code-repls) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-code-repls/package.json b/packages/gatsby-remark-code-repls/package.json index e330f84c058c7..bbfbc06fb2989 100644 --- a/packages/gatsby-remark-code-repls/package.json +++ b/packages/gatsby-remark-code-repls/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-code-repls", "description": "Gatsby plugin to auto-generate links to popular REPLs like Babel and Codepen", - "version": "7.15.0-next.0", + "version": "7.16.0-next.0", "author": "Brian Vaughn ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -18,7 +18,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-code-repls#readme", diff --git a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md index 1af75448d9e4d..3acb0d7b624df 100644 --- a/packages/gatsby-remark-copy-linked-files/CHANGELOG.md +++ b/packages/gatsby-remark-copy-linked-files/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@6.15.0/packages/gatsby-remark-copy-linked-files) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-copy-linked-files + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-copy-linked-files@6.14.0/packages/gatsby-remark-copy-linked-files) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-copy-linked-files/package.json b/packages/gatsby-remark-copy-linked-files/package.json index 15f52782a5f4f..f59c35a9f1362 100644 --- a/packages/gatsby-remark-copy-linked-files/package.json +++ b/packages/gatsby-remark-copy-linked-files/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-copy-linked-files", "description": "Find files which are linked to from markdown and copy them to the public directory", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "remark": "^13.0.0", "remark-mdx": "^1.6.22" diff --git a/packages/gatsby-remark-custom-blocks/CHANGELOG.md b/packages/gatsby-remark-custom-blocks/CHANGELOG.md index 51b68122ed3c4..b5568edd2d1df 100644 --- a/packages/gatsby-remark-custom-blocks/CHANGELOG.md +++ b/packages/gatsby-remark-custom-blocks/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@5.15.0/packages/gatsby-remark-custom-blocks) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-custom-blocks + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-custom-blocks@5.14.0/packages/gatsby-remark-custom-blocks) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-custom-blocks/package.json b/packages/gatsby-remark-custom-blocks/package.json index 43cafc261a6d3..b36f2d2345ddd 100644 --- a/packages/gatsby-remark-custom-blocks/package.json +++ b/packages/gatsby-remark-custom-blocks/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-custom-blocks", "description": "Gatsby remark plugin for adding custom blocks in markdown", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Mohammad Asad Mohammad ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "unist-util-find": "1.0.2" }, diff --git a/packages/gatsby-remark-embed-snippet/CHANGELOG.md b/packages/gatsby-remark-embed-snippet/CHANGELOG.md index 5ec79296da2a2..f5c77d61c9c98 100644 --- a/packages/gatsby-remark-embed-snippet/CHANGELOG.md +++ b/packages/gatsby-remark-embed-snippet/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@8.15.0/packages/gatsby-remark-embed-snippet) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-embed-snippet + ## [8.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-embed-snippet@8.14.0/packages/gatsby-remark-embed-snippet) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-embed-snippet/package.json b/packages/gatsby-remark-embed-snippet/package.json index 3c0351464d24b..e11a92be48f5a 100644 --- a/packages/gatsby-remark-embed-snippet/package.json +++ b/packages/gatsby-remark-embed-snippet/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-embed-snippet", "description": "Gatsby plugin to embed formatted code snippets within markdown", - "version": "8.15.0-next.0", + "version": "8.16.0-next.0", "author": "Brian Vaughn ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-embed-snippet#readme", diff --git a/packages/gatsby-remark-graphviz/CHANGELOG.md b/packages/gatsby-remark-graphviz/CHANGELOG.md index b59f062f574a7..100cb1fc68b86 100644 --- a/packages/gatsby-remark-graphviz/CHANGELOG.md +++ b/packages/gatsby-remark-graphviz/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@5.15.0/packages/gatsby-remark-graphviz) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-graphviz + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-graphviz@5.14.0/packages/gatsby-remark-graphviz) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-graphviz/package.json b/packages/gatsby-remark-graphviz/package.json index 3c847668b12f6..56facdebd5072 100644 --- a/packages/gatsby-remark-graphviz/package.json +++ b/packages/gatsby-remark-graphviz/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-graphviz", "description": "Processes graphviz code blocks and renders to SVG using viz.js", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Anthony Marcar ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "hast-util-to-html": "^7.1.3", "mdast-util-to-hast": "^10.2.0", diff --git a/packages/gatsby-remark-images-contentful/CHANGELOG.md b/packages/gatsby-remark-images-contentful/CHANGELOG.md index dec718b24b173..df3337231c5e9 100644 --- a/packages/gatsby-remark-images-contentful/CHANGELOG.md +++ b/packages/gatsby-remark-images-contentful/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@6.15.0/packages/gatsby-remark-images-contentful) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-images-contentful + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images-contentful@6.14.0/packages/gatsby-remark-images-contentful) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-images-contentful/package.json b/packages/gatsby-remark-images-contentful/package.json index d25642b9d84f0..21407995c713d 100644 --- a/packages/gatsby-remark-images-contentful/package.json +++ b/packages/gatsby-remark-images-contentful/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-remark-images-contentful", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "description": "Process Images in Contentful markdown so they can use the images API.", "main": "index.js", "scripts": { @@ -28,7 +28,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-remark-images/CHANGELOG.md b/packages/gatsby-remark-images/CHANGELOG.md index b8298b26cfe56..cf658d1e189f2 100644 --- a/packages/gatsby-remark-images/CHANGELOG.md +++ b/packages/gatsby-remark-images/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@7.15.0/packages/gatsby-remark-images) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-images + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-images@7.14.0/packages/gatsby-remark-images) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-images/package.json b/packages/gatsby-remark-images/package.json index 16d1a6e8af8fc..9394b7bdb64d1 100644 --- a/packages/gatsby-remark-images/package.json +++ b/packages/gatsby-remark-images/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-images", "description": "Processes images in markdown so they can be used in the production build.", - "version": "7.15.0-next.0", + "version": "7.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -10,7 +10,7 @@ "@babel/runtime": "^7.20.13", "chalk": "^4.1.2", "cheerio": "1.0.0-rc.12", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "is-relative-url": "^3.0.0", "lodash": "^4.17.21", "mdast-util-definitions": "^4.0.0", @@ -21,9 +21,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "hast-util-to-html": "^7.1.3", "mdast-util-to-hast": "^10.2.0" }, diff --git a/packages/gatsby-remark-katex/CHANGELOG.md b/packages/gatsby-remark-katex/CHANGELOG.md index 8f94028476530..75bb115eba384 100644 --- a/packages/gatsby-remark-katex/CHANGELOG.md +++ b/packages/gatsby-remark-katex/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@7.15.0/packages/gatsby-remark-katex) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-katex + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-katex@7.14.0/packages/gatsby-remark-katex) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-katex/package.json b/packages/gatsby-remark-katex/package.json index a5f0c3db077ad..c8e779a86ddc4 100644 --- a/packages/gatsby-remark-katex/package.json +++ b/packages/gatsby-remark-katex/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-katex", "description": "Transform math nodes to html markup", - "version": "7.15.0-next.0", + "version": "7.16.0-next.0", "author": "Jeffrey Xiao ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "katex": "^0.13.18", "remark": "^13.0.0" diff --git a/packages/gatsby-remark-prismjs/CHANGELOG.md b/packages/gatsby-remark-prismjs/CHANGELOG.md index 8d98df77f1d77..71a1029977492 100644 --- a/packages/gatsby-remark-prismjs/CHANGELOG.md +++ b/packages/gatsby-remark-prismjs/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@7.15.0/packages/gatsby-remark-prismjs) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-prismjs + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-prismjs@7.14.0/packages/gatsby-remark-prismjs) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-prismjs/package.json b/packages/gatsby-remark-prismjs/package.json index 71d3a2ae339c5..de06756bf3056 100644 --- a/packages/gatsby-remark-prismjs/package.json +++ b/packages/gatsby-remark-prismjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-prismjs", "description": "Adds syntax highlighting to code blocks at build time using PrismJS", - "version": "7.15.0-next.0", + "version": "7.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cheerio": "1.0.0-rc.12", "cross-env": "^7.0.3", "prismjs": "^1.29.0", diff --git a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md index 7a806a7ea6d0d..988391e0d66ac 100644 --- a/packages/gatsby-remark-responsive-iframe/CHANGELOG.md +++ b/packages/gatsby-remark-responsive-iframe/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@6.15.0/packages/gatsby-remark-responsive-iframe) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-responsive-iframe + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-responsive-iframe@6.14.0/packages/gatsby-remark-responsive-iframe) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-responsive-iframe/package.json b/packages/gatsby-remark-responsive-iframe/package.json index 507bf663beaab..c3f58d2b2c8a7 100644 --- a/packages/gatsby-remark-responsive-iframe/package.json +++ b/packages/gatsby-remark-responsive-iframe/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-responsive-iframe", "description": "Make iframes in Markdown processed by Remark responsive", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -16,7 +16,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "remark": "^13.0.0", "remark-mdx": "^1.6.22", diff --git a/packages/gatsby-remark-smartypants/CHANGELOG.md b/packages/gatsby-remark-smartypants/CHANGELOG.md index 9f5ee10be4cca..d4affc74f12d9 100644 --- a/packages/gatsby-remark-smartypants/CHANGELOG.md +++ b/packages/gatsby-remark-smartypants/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@6.15.0/packages/gatsby-remark-smartypants) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-remark-smartypants + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-remark-smartypants@6.14.0/packages/gatsby-remark-smartypants) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-remark-smartypants/package.json b/packages/gatsby-remark-smartypants/package.json index 432b66e92f195..c4bbf210b2832 100644 --- a/packages/gatsby-remark-smartypants/package.json +++ b/packages/gatsby-remark-smartypants/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-remark-smartypants", "description": "Use retext-smartypants to auto-enhance typography of markdown", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-remark-smartypants#readme", diff --git a/packages/gatsby-script/CHANGELOG.md b/packages/gatsby-script/CHANGELOG.md index 3486eab26506d..7adf10893a7fc 100644 --- a/packages/gatsby-script/CHANGELOG.md +++ b/packages/gatsby-script/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-script@2.15.0/packages/gatsby-script) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-script + ## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-script@2.14.0/packages/gatsby-script) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-script/package.json b/packages/gatsby-script/package.json index ca8854be8c6fa..3d7cb1c1e0a85 100644 --- a/packages/gatsby-script/package.json +++ b/packages/gatsby-script/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-script", "description": "An enhanced script component for Gatsby sites with support for various loading strategies", - "version": "2.15.0-next.0", + "version": "2.16.0-next.0", "author": "Ty Hopp ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" diff --git a/packages/gatsby-sharp/CHANGELOG.md b/packages/gatsby-sharp/CHANGELOG.md index ae3cfbfc57ae9..d2b2d0f7565dc 100644 --- a/packages/gatsby-sharp/CHANGELOG.md +++ b/packages/gatsby-sharp/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-sharp@1.15.0/packages/gatsby-sharp) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-sharp + ## [1.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-sharp@1.14.0/packages/gatsby-sharp) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-sharp/package.json b/packages/gatsby-sharp/package.json index d6c43701587f9..96adc4ed86bd4 100644 --- a/packages/gatsby-sharp/package.json +++ b/packages/gatsby-sharp/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-sharp", - "version": "1.15.0-next.0", + "version": "1.16.0-next.0", "sideEffects": false, "keywords": [ "gatsby", diff --git a/packages/gatsby-source-contentful/CHANGELOG.md b/packages/gatsby-source-contentful/CHANGELOG.md index 1d2c46585dd83..bf7eb00d2854a 100644 --- a/packages/gatsby-source-contentful/CHANGELOG.md +++ b/packages/gatsby-source-contentful/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@8.16.0/packages/gatsby-source-contentful) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Features + +- update to ESM compatible version of CTF library [#39178](https://github.com/gatsbyjs/gatsby/issues/39178) [#39182](https://github.com/gatsbyjs/gatsby/issues/39182) ([3ccd1d8](https://github.com/gatsbyjs/gatsby/commit/3ccd1d8483b42387bccedf96e320d60719d1d147)) + +#### Bug Fixes + +- support node 22 [#39349](https://github.com/gatsbyjs/gatsby/issues/39349) ([7451d2f](https://github.com/gatsbyjs/gatsby/commit/7451d2ff56c46b4d9ceebbb6e830fa83fcd29e5b)) + ## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-contentful@8.15.0/packages/gatsby-source-contentful) (2024-12-13) #### Features diff --git a/packages/gatsby-source-contentful/package.json b/packages/gatsby-source-contentful/package.json index d9e0d479312be..944052c27d135 100644 --- a/packages/gatsby-source-contentful/package.json +++ b/packages/gatsby-source-contentful/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-contentful", "description": "Gatsby source plugin for building websites using the Contentful CMS as a data source", - "version": "8.16.0-next.1", + "version": "8.17.0-next.0", "author": "Marcus Ericsson (mericsson.com)", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,9 +15,9 @@ "common-tags": "^1.8.2", "contentful": "^11.2.5", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", - "gatsby-source-filesystem": "^5.15.0-next.1", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", + "gatsby-source-filesystem": "^5.16.0-next.0", "is-online": "^10.0.0", "json-stringify-safe": "^5.0.1", "lodash": "^4.17.21", @@ -28,7 +28,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "nock": "^13.3.1" }, diff --git a/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js b/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js index 033ea67336beb..084ed183e96ee 100644 --- a/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js +++ b/packages/gatsby-source-contentful/src/__tests__/gatsby-plugin-image.js @@ -8,7 +8,7 @@ import _ from "lodash" import { resolve } from "path" import { setFieldsOnGraphQLNodeType } from "../extend-node-type" import { generateImageSource } from "../gatsby-plugin-image" -import * as gatsbyCoreUtils from "gatsby-core-utils" +import * as fetchRemoteFileModule from "gatsby-core-utils/fetch-remote-file" import * as pluginSharp from "gatsby-plugin-sharp" const FIXTURES = resolve(__dirname, `..`, `__fixtures__`) @@ -20,7 +20,7 @@ jest .spyOn(pluginSharp, `getDominantColor`) .mockImplementation(() => Promise.resolve(`#mocked`)) jest - .spyOn(gatsbyCoreUtils, `fetchRemoteFile`) + .spyOn(fetchRemoteFileModule, `fetchRemoteFile`) .mockImplementation(() => Promise.resolve(`${FIXTURES}/contentful-logo-256.png`) ) diff --git a/packages/gatsby-source-drupal/CHANGELOG.md b/packages/gatsby-source-drupal/CHANGELOG.md index f15c3c6099ce3..6abd725b968c9 100644 --- a/packages/gatsby-source-drupal/CHANGELOG.md +++ b/packages/gatsby-source-drupal/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@6.15.0/packages/gatsby-source-drupal) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-drupal + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-drupal@6.14.0/packages/gatsby-source-drupal) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-drupal/package.json b/packages/gatsby-source-drupal/package.json index abfb6cb01e5c1..d38890c88a00e 100644 --- a/packages/gatsby-source-drupal/package.json +++ b/packages/gatsby-source-drupal/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-drupal", "description": "Gatsby source plugin for building websites using the Drupal CMS as a data source", - "version": "6.15.0-next.1", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,8 +13,8 @@ "bluebird": "^3.7.2", "body-parser": "^1.20.3", "fastq": "^1.17.1", - "gatsby-plugin-utils": "^4.15.0-next.0", - "gatsby-source-filesystem": "^5.15.0-next.1", + "gatsby-plugin-utils": "^4.16.0-next.0", + "gatsby-source-filesystem": "^5.16.0-next.0", "got": "^11.8.6", "http2-wrapper": "^2.2.1", "lodash": "^4.17.21", @@ -27,7 +27,7 @@ "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", "@babel/preset-typescript": "^7.18.6", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-source-faker/CHANGELOG.md b/packages/gatsby-source-faker/CHANGELOG.md index d7bbe90d34f29..16f9142b2f012 100644 --- a/packages/gatsby-source-faker/CHANGELOG.md +++ b/packages/gatsby-source-faker/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@5.15.0/packages/gatsby-source-faker) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-faker + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-faker@5.14.0/packages/gatsby-source-faker) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-faker/package.json b/packages/gatsby-source-faker/package.json index 96ee5f3b42ef8..e5277939118ab 100644 --- a/packages/gatsby-source-faker/package.json +++ b/packages/gatsby-source-faker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-faker", "description": "A gatsby plugin to get fake data for testing", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Pavithra Kodmad", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-faker#readme", diff --git a/packages/gatsby-source-filesystem/CHANGELOG.md b/packages/gatsby-source-filesystem/CHANGELOG.md index e558c2b12ac90..002717992320c 100644 --- a/packages/gatsby-source-filesystem/CHANGELOG.md +++ b/packages/gatsby-source-filesystem/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.15.0/packages/gatsby-source-filesystem) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8)) + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-filesystem@5.14.0/packages/gatsby-source-filesystem) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-filesystem/package.json b/packages/gatsby-source-filesystem/package.json index f4cdef819244f..bd05cc389ff29 100644 --- a/packages/gatsby-source-filesystem/package.json +++ b/packages/gatsby-source-filesystem/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-filesystem", "description": "Gatsby source plugin for building websites from local data. Markdown, JSON, images, YAML, CSV, and dozens of other data types supported.", - "version": "5.15.0-next.1", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "chokidar": "^3.6.0", "file-type": "^16.5.4", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "mime": "^3.0.0", "pretty-bytes": "^5.6.0", "valid-url": "^1.0.9", @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-filesystem#readme", diff --git a/packages/gatsby-source-graphql/CHANGELOG.md b/packages/gatsby-source-graphql/CHANGELOG.md index 30850acd0951a..2da1a18506d9e 100644 --- a/packages/gatsby-source-graphql/CHANGELOG.md +++ b/packages/gatsby-source-graphql/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@5.15.0/packages/gatsby-source-graphql) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-graphql + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-graphql@5.14.0/packages/gatsby-source-graphql) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-graphql/package.json b/packages/gatsby-source-graphql/package.json index 917f1c9a08b7b..d3368035085e8 100644 --- a/packages/gatsby-source-graphql/package.json +++ b/packages/gatsby-source-graphql/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-graphql", "description": "Gatsby plugin which adds a third-party GraphQL API to Gatsby GraphQL", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Mikhail Novikov ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,14 +13,14 @@ "@graphql-tools/utils": "^8.13.1", "@graphql-tools/wrap": "^8.5.1", "dataloader": "^2.2.2", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "invariant": "^2.2.4", "node-fetch": "^2.6.11" }, "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-graphql#readme", diff --git a/packages/gatsby-source-hacker-news/CHANGELOG.md b/packages/gatsby-source-hacker-news/CHANGELOG.md index 2394aed71cde4..579c46f55e078 100644 --- a/packages/gatsby-source-hacker-news/CHANGELOG.md +++ b/packages/gatsby-source-hacker-news/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@5.15.0/packages/gatsby-source-hacker-news) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-hacker-news + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-hacker-news@5.14.0/packages/gatsby-source-hacker-news) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-hacker-news/package.json b/packages/gatsby-source-hacker-news/package.json index e5a283fb4d29c..1904627dcbead 100644 --- a/packages/gatsby-source-hacker-news/package.json +++ b/packages/gatsby-source-hacker-news/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-hacker-news", "description": "Gatsby source plugin for building websites using Hacker News as a data source", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-hacker-news#readme", diff --git a/packages/gatsby-source-lever/CHANGELOG.md b/packages/gatsby-source-lever/CHANGELOG.md index 9a663ff934942..709ad1be55cc1 100644 --- a/packages/gatsby-source-lever/CHANGELOG.md +++ b/packages/gatsby-source-lever/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@5.15.0/packages/gatsby-source-lever) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-lever + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-lever@5.14.0/packages/gatsby-source-lever) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-lever/package.json b/packages/gatsby-source-lever/package.json index 7efc8c5c6de5e..9b8fe464d2469 100644 --- a/packages/gatsby-source-lever/package.json +++ b/packages/gatsby-source-lever/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-lever", "description": "Gatsby source plugin for building websites using the Lever.co Recruitment Software as a data source.", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Sebastien Fichot ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -20,7 +20,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-lever#readme", diff --git a/packages/gatsby-source-medium/CHANGELOG.md b/packages/gatsby-source-medium/CHANGELOG.md index a6a264209d4a9..f3b56af998226 100644 --- a/packages/gatsby-source-medium/CHANGELOG.md +++ b/packages/gatsby-source-medium/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@5.15.0/packages/gatsby-source-medium) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-medium + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-medium@5.14.0/packages/gatsby-source-medium) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-medium/package.json b/packages/gatsby-source-medium/package.json index c9e00c8ab5cbe..17223e5def548 100644 --- a/packages/gatsby-source-medium/package.json +++ b/packages/gatsby-source-medium/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-medium", "description": "Gatsby source plugin for building websites using Medium as a data source", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Robert Vogt ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-medium#readme", diff --git a/packages/gatsby-source-mongodb/CHANGELOG.md b/packages/gatsby-source-mongodb/CHANGELOG.md index b1e6ebf4a82db..ba985268c5616 100644 --- a/packages/gatsby-source-mongodb/CHANGELOG.md +++ b/packages/gatsby-source-mongodb/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@5.15.0/packages/gatsby-source-mongodb) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-mongodb + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-mongodb@5.14.0/packages/gatsby-source-mongodb) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-mongodb/package.json b/packages/gatsby-source-mongodb/package.json index df9e0455a6ee6..b46932a909f69 100644 --- a/packages/gatsby-source-mongodb/package.json +++ b/packages/gatsby-source-mongodb/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-mongodb", "description": "Source plugin for pulling data into Gatsby from MongoDB collections", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "authors": [ "jhermans85@hotmail.com", "hi@elmar.codes" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-mongodb#readme", diff --git a/packages/gatsby-source-npm-package-search/CHANGELOG.md b/packages/gatsby-source-npm-package-search/CHANGELOG.md index e0733a5764644..eb750a6d1b6a1 100644 --- a/packages/gatsby-source-npm-package-search/CHANGELOG.md +++ b/packages/gatsby-source-npm-package-search/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@5.15.0/packages/gatsby-source-npm-package-search) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-npm-package-search + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-npm-package-search@5.14.0/packages/gatsby-source-npm-package-search) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-npm-package-search/package.json b/packages/gatsby-source-npm-package-search/package.json index 30a04460d0a29..54b54b86f07c7 100644 --- a/packages/gatsby-source-npm-package-search/package.json +++ b/packages/gatsby-source-npm-package-search/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-source-npm-package-search", "description": "Search NPM packages and pull NPM & GitHub metadata from Algolia's NPM index", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "james.a.stack@gmail.com", "repository": { "type": "git", @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-source-shopify/README.md b/packages/gatsby-source-shopify/README.md index b7f8a87add5c2..fdf9bba2a527d 100644 --- a/packages/gatsby-source-shopify/README.md +++ b/packages/gatsby-source-shopify/README.md @@ -18,9 +18,6 @@ PRs welcome! - - Follow @gatsbyjs -


@@ -39,7 +36,7 @@ - 🚥 [Use run-time images](#use-run-time-images) - 🖼️ [Displaying images](#displaying-images) - 🚨 [Limitations](#limitations) -- 💾 [V6 to V7 Migration Guide](#v6-to-V7-migration-guide) +- 💾 [V6 to V7 Migration Guide](#v6-to-v7-migration-guide) # gatsby-source-shopify diff --git a/packages/gatsby-source-shopify/package.json b/packages/gatsby-source-shopify/package.json index d6fff7d9f46db..b07e88ae8581e 100644 --- a/packages/gatsby-source-shopify/package.json +++ b/packages/gatsby-source-shopify/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-shopify", - "version": "10.0.0-next.0", + "version": "10.1.0-next.0", "description": "Gatsby source plugin for building websites using Shopify as a data source.", "scripts": { "watch": "tsc-watch --outDir .", @@ -24,9 +24,9 @@ "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-source-shopify#readme", "dependencies": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", - "gatsby-source-filesystem": "^5.15.0-next.1", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", + "gatsby-source-filesystem": "^5.16.0-next.0", "node-fetch": "^2.6.11", "sharp": "^0.32.6", "shift-left": "^0.1.5" @@ -35,7 +35,7 @@ "@types/node": "^18.17.19", "@types/node-fetch": "^2.6.4", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^3.15.0-next.1", + "gatsby-plugin-image": "^3.16.0-next.0", "msw": "^1.2.2", "prettier": "^2.8.8", "prettier-check": "^2.0.0", diff --git a/packages/gatsby-source-wikipedia/CHANGELOG.md b/packages/gatsby-source-wikipedia/CHANGELOG.md index 9e0687577901f..2de50e2d337d6 100644 --- a/packages/gatsby-source-wikipedia/CHANGELOG.md +++ b/packages/gatsby-source-wikipedia/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@5.15.0/packages/gatsby-source-wikipedia) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-source-wikipedia + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wikipedia@5.14.0/packages/gatsby-source-wikipedia) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-wikipedia/package.json b/packages/gatsby-source-wikipedia/package.json index ef667f836c068..eae4a4ac14eee 100644 --- a/packages/gatsby-source-wikipedia/package.json +++ b/packages/gatsby-source-wikipedia/package.json @@ -1,6 +1,6 @@ { "name": "gatsby-source-wikipedia", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "description": "Gatsby source plugin for pulling articles from Wikipedia", "main": "index.js", "scripts": { @@ -37,7 +37,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "engines": { diff --git a/packages/gatsby-source-wordpress/CHANGELOG.md b/packages/gatsby-source-wordpress/CHANGELOG.md index 15fe5e3bb6eb9..4b6d913e9c3b1 100644 --- a/packages/gatsby-source-wordpress/CHANGELOG.md +++ b/packages/gatsby-source-wordpress/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.16.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@7.16.0/packages/gatsby-source-wordpress) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Features + +- support wp-graphql@2 [#39263](https://github.com/gatsbyjs/gatsby/issues/39263) ([d8cc254](https://github.com/gatsbyjs/gatsby/commit/d8cc2542d2507237c28dbbeac7770a409f13c707)) + +#### Chores + +- remove Gatsby Discord references [#39351](https://github.com/gatsbyjs/gatsby/issues/39351) ([c3708b0](https://github.com/gatsbyjs/gatsby/commit/c3708b068abba3a26e5cf229d6d4dc5813884acd)) + +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@7.15.0/packages/gatsby-source-wordpress) (2025-04-09) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) + +#### Features + +- support wp-graphql@2 [#39263](https://github.com/gatsbyjs/gatsby/issues/39263) [#39269](https://github.com/gatsbyjs/gatsby/issues/39269) ([4c327b5](https://github.com/gatsbyjs/gatsby/commit/4c327b5c7724d851b2d495565002715a766405d3)) + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-source-wordpress@7.14.0/packages/gatsby-source-wordpress) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-source-wordpress/README.md b/packages/gatsby-source-wordpress/README.md index 0a12eef1c0c99..eaf21574b5551 100644 --- a/packages/gatsby-source-wordpress/README.md +++ b/packages/gatsby-source-wordpress/README.md @@ -18,9 +18,6 @@ PRs welcome! - - Follow @gatsbyjs -

# gatsby-source-wordpress diff --git a/packages/gatsby-source-wordpress/package.json b/packages/gatsby-source-wordpress/package.json index e6002fa8850ee..427386a719cda 100644 --- a/packages/gatsby-source-wordpress/package.json +++ b/packages/gatsby-source-wordpress/package.json @@ -2,7 +2,7 @@ "name": "gatsby-source-wordpress", "description": "Source data from WordPress in an efficient and scalable way.", "author": "Tyler Barnes ", - "version": "7.16.0-next.0", + "version": "7.17.0-next.0", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, @@ -27,10 +27,10 @@ "file-type": "^16.5.4", "filesize": "^6.4.0", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-catch-links": "^5.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", - "gatsby-source-filesystem": "^5.15.0-next.1", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-catch-links": "^5.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", + "gatsby-source-filesystem": "^5.16.0-next.0", "glob": "^7.2.3", "got": "^11.8.6", "immer": "^9.0.21", @@ -55,10 +55,10 @@ "@types/semver": "^7.5.0", "babel-plugin-import-globals": "^2.0.0", "babel-plugin-module-resolver": "4.1.0", - "babel-preset-gatsby": "^3.15.0-next.0", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby": "^3.16.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-image": "^3.15.0-next.1", + "gatsby-plugin-image": "^3.16.0-next.0", "identity-obj-proxy": "^3.0.0", "react-test-renderer": "^16.14.0", "rimraf": "^3.0.2", diff --git a/packages/gatsby-transformer-asciidoc/CHANGELOG.md b/packages/gatsby-transformer-asciidoc/CHANGELOG.md index 1d18d53d49cf6..4d68e1bc810e6 100644 --- a/packages/gatsby-transformer-asciidoc/CHANGELOG.md +++ b/packages/gatsby-transformer-asciidoc/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-asciidoc@4.15.0/packages/gatsby-transformer-asciidoc) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-asciidoc + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-asciidoc@4.14.0/packages/gatsby-transformer-asciidoc) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-asciidoc/package.json b/packages/gatsby-transformer-asciidoc/package.json index 35d9058ae5466..d625d606474f1 100644 --- a/packages/gatsby-transformer-asciidoc/package.json +++ b/packages/gatsby-transformer-asciidoc/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-asciidoc", "description": "Gatsby transformer plugin for Asciidocs using the Asciidoctor.js library", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "author": "Daniel Oliver ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "lodash": "^4.17.21" }, diff --git a/packages/gatsby-transformer-csv/CHANGELOG.md b/packages/gatsby-transformer-csv/CHANGELOG.md index c46c750dba00f..aea693e1bed50 100644 --- a/packages/gatsby-transformer-csv/CHANGELOG.md +++ b/packages/gatsby-transformer-csv/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-csv@5.15.0/packages/gatsby-transformer-csv) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-csv + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-csv@5.14.0/packages/gatsby-transformer-csv) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-csv/package.json b/packages/gatsby-transformer-csv/package.json index e4c296e5048a6..f5127e8e5442b 100644 --- a/packages/gatsby-transformer-csv/package.json +++ b/packages/gatsby-transformer-csv/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-csv", "description": "Gatsby transformer plugin for CSV files", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Sonal Saldanha ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "json2csv": "^5.0.7" }, diff --git a/packages/gatsby-transformer-documentationjs/CHANGELOG.md b/packages/gatsby-transformer-documentationjs/CHANGELOG.md index a5a0da1b62f15..989232ba1e6a3 100644 --- a/packages/gatsby-transformer-documentationjs/CHANGELOG.md +++ b/packages/gatsby-transformer-documentationjs/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-documentationjs@7.15.0/packages/gatsby-transformer-documentationjs) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-documentationjs + ## [7.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-documentationjs@7.14.0/packages/gatsby-transformer-documentationjs) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-documentationjs/package.json b/packages/gatsby-transformer-documentationjs/package.json index b2936b3a801ca..a67a5b469930e 100644 --- a/packages/gatsby-transformer-documentationjs/package.json +++ b/packages/gatsby-transformer-documentationjs/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-documentationjs", "description": "Gatsby transformer plugin which uses Documentation.js to extract JavaScript documentation", - "version": "7.15.0-next.0", + "version": "7.16.0-next.0", "author": "Kyle Mathews", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-documentationjs#readme", diff --git a/packages/gatsby-transformer-excel/CHANGELOG.md b/packages/gatsby-transformer-excel/CHANGELOG.md index 4e5e96c669f35..203347d607391 100644 --- a/packages/gatsby-transformer-excel/CHANGELOG.md +++ b/packages/gatsby-transformer-excel/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-excel@5.15.0/packages/gatsby-transformer-excel) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-excel + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-excel@5.14.0/packages/gatsby-transformer-excel) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-excel/package.json b/packages/gatsby-transformer-excel/package.json index 5308537c6e083..9aa386fbbc826 100644 --- a/packages/gatsby-transformer-excel/package.json +++ b/packages/gatsby-transformer-excel/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-excel", "description": "Gatsby transformer plugin for Excel spreadsheets", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "SheetJS ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-excel#readme", diff --git a/packages/gatsby-transformer-hjson/CHANGELOG.md b/packages/gatsby-transformer-hjson/CHANGELOG.md index 009b8820128b7..c1c63ab009b24 100644 --- a/packages/gatsby-transformer-hjson/CHANGELOG.md +++ b/packages/gatsby-transformer-hjson/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-hjson@5.15.0/packages/gatsby-transformer-hjson) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-hjson + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-hjson@5.14.0/packages/gatsby-transformer-hjson) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-hjson/package.json b/packages/gatsby-transformer-hjson/package.json index 88485c89ba3d2..b60d34ef647a1 100644 --- a/packages/gatsby-transformer-hjson/package.json +++ b/packages/gatsby-transformer-hjson/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-hjson", "description": "Gatsby transformer plugin for HJSON files", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Remi Barraquand ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-hjson#readme", diff --git a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md index b396522d63926..00fe8a5c1b230 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md +++ b/packages/gatsby-transformer-javascript-frontmatter/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-frontmatter@5.15.0/packages/gatsby-transformer-javascript-frontmatter) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-javascript-frontmatter + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-javascript-frontmatter@5.14.0/packages/gatsby-transformer-javascript-frontmatter) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-javascript-frontmatter/package.json b/packages/gatsby-transformer-javascript-frontmatter/package.json index d9de7ec68d173..0cdd8845c477b 100644 --- a/packages/gatsby-transformer-javascript-frontmatter/package.json +++ b/packages/gatsby-transformer-javascript-frontmatter/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-javascript-frontmatter", "description": "Gatsby transformer plugin for JavaScript to extract exports.frontmatter statically.", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Jacob Bolda ", "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-javascript-frontmatter#readme", "dependencies": { @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "keywords": [ diff --git a/packages/gatsby-transformer-json/CHANGELOG.md b/packages/gatsby-transformer-json/CHANGELOG.md index e24c291e85424..6b98caba1c0b7 100644 --- a/packages/gatsby-transformer-json/CHANGELOG.md +++ b/packages/gatsby-transformer-json/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-json@5.15.0/packages/gatsby-transformer-json) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-json + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-json@5.14.0/packages/gatsby-transformer-json) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-json/package.json b/packages/gatsby-transformer-json/package.json index a284b477fb795..3f24983f12df5 100644 --- a/packages/gatsby-transformer-json/package.json +++ b/packages/gatsby-transformer-json/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-json", "description": "Gatsby transformer plugin for JSON files", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -13,7 +13,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-json#readme", diff --git a/packages/gatsby-transformer-pdf/CHANGELOG.md b/packages/gatsby-transformer-pdf/CHANGELOG.md index 7d76aff99b30e..646eee533aad4 100644 --- a/packages/gatsby-transformer-pdf/CHANGELOG.md +++ b/packages/gatsby-transformer-pdf/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [4.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-pdf@4.15.0/packages/gatsby-transformer-pdf) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-pdf + ## [4.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-pdf@4.14.0/packages/gatsby-transformer-pdf) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-pdf/package.json b/packages/gatsby-transformer-pdf/package.json index fa02b25027d02..959eeabf22746 100644 --- a/packages/gatsby-transformer-pdf/package.json +++ b/packages/gatsby-transformer-pdf/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-pdf", "description": "Gatsby transformer plugin for pdf files", - "version": "4.15.0-next.0", + "version": "4.16.0-next.0", "author": "Alex Munoz ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-pdf#readme", diff --git a/packages/gatsby-transformer-react-docgen/CHANGELOG.md b/packages/gatsby-transformer-react-docgen/CHANGELOG.md index 880b78a05531d..81a7788bceaf2 100644 --- a/packages/gatsby-transformer-react-docgen/CHANGELOG.md +++ b/packages/gatsby-transformer-react-docgen/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [8.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-react-docgen@8.15.0/packages/gatsby-transformer-react-docgen) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-react-docgen + ## [8.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-react-docgen@8.14.0/packages/gatsby-transformer-react-docgen) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-react-docgen/package.json b/packages/gatsby-transformer-react-docgen/package.json index 339b1e0cb8553..e9f64a669c771 100644 --- a/packages/gatsby-transformer-react-docgen/package.json +++ b/packages/gatsby-transformer-react-docgen/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-react-docgen", "description": "Expose React component metadata and prop information as GraphQL types", - "version": "8.15.0-next.0", + "version": "8.16.0-next.0", "author": "Jason Quense ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -17,7 +17,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "lodash": "^4.17.21" }, diff --git a/packages/gatsby-transformer-remark/CHANGELOG.md b/packages/gatsby-transformer-remark/CHANGELOG.md index 4cc1be1336041..049212bcb2a7e 100644 --- a/packages/gatsby-transformer-remark/CHANGELOG.md +++ b/packages/gatsby-transformer-remark/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-remark@6.15.0/packages/gatsby-transformer-remark) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-remark + ## [6.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-remark@6.14.0/packages/gatsby-transformer-remark) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-remark/package.json b/packages/gatsby-transformer-remark/package.json index 0f6902a6bc4de..0cb4d663f498f 100644 --- a/packages/gatsby-transformer-remark/package.json +++ b/packages/gatsby-transformer-remark/package.json @@ -1,14 +1,14 @@ { "name": "gatsby-transformer-remark", "description": "Gatsby transformer plugin for Markdown using the Remark library and ecosystem", - "version": "6.15.0-next.0", + "version": "6.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" }, "dependencies": { "@babel/runtime": "^7.20.13", - "gatsby-core-utils": "^4.15.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", "gray-matter": "^4.0.3", "hast-util-raw": "^6.1.0", "hast-util-to-html": "^7.1.3", @@ -33,9 +33,9 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", - "gatsby-plugin-utils": "^4.15.0-next.0" + "gatsby-plugin-utils": "^4.16.0-next.0" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-remark#readme", "keywords": [ diff --git a/packages/gatsby-transformer-screenshot/CHANGELOG.md b/packages/gatsby-transformer-screenshot/CHANGELOG.md index 84d33c19f0b98..b49f779cb7f14 100644 --- a/packages/gatsby-transformer-screenshot/CHANGELOG.md +++ b/packages/gatsby-transformer-screenshot/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-screenshot@5.15.0/packages/gatsby-transformer-screenshot) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-screenshot + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-screenshot@5.14.0/packages/gatsby-transformer-screenshot) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-screenshot/package.json b/packages/gatsby-transformer-screenshot/package.json index e993452cca79f..6b61822f68e21 100644 --- a/packages/gatsby-transformer-screenshot/package.json +++ b/packages/gatsby-transformer-screenshot/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-screenshot", "description": "Gatsby transformer plugin that uses AWS Lambda to take screenshots of websites", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Cassandra Beckley ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-screenshot#readme", diff --git a/packages/gatsby-transformer-sharp/CHANGELOG.md b/packages/gatsby-transformer-sharp/CHANGELOG.md index c11f6108b6ffc..ffa2d28b0a60a 100644 --- a/packages/gatsby-transformer-sharp/CHANGELOG.md +++ b/packages/gatsby-transformer-sharp/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sharp@5.15.0/packages/gatsby-transformer-sharp) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-sharp + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sharp@5.14.0/packages/gatsby-transformer-sharp) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-sharp/package.json b/packages/gatsby-transformer-sharp/package.json index 7930a89dba540..06584cfb2282f 100644 --- a/packages/gatsby-transformer-sharp/package.json +++ b/packages/gatsby-transformer-sharp/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sharp", "description": "Gatsby transformer plugin for images using Sharp", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -11,7 +11,7 @@ "bluebird": "^3.7.2", "common-tags": "^1.8.2", "fs-extra": "^11.2.0", - "gatsby-plugin-utils": "^4.15.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", "probe-image-size": "^7.2.3", "semver": "^7.5.3", "sharp": "^0.32.6" @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-sharp#readme", diff --git a/packages/gatsby-transformer-sqip/CHANGELOG.md b/packages/gatsby-transformer-sqip/CHANGELOG.md index 3acfb34bd5f85..38795c66c4987 100644 --- a/packages/gatsby-transformer-sqip/CHANGELOG.md +++ b/packages/gatsby-transformer-sqip/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sqip@5.15.0/packages/gatsby-transformer-sqip) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-sqip + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-sqip@5.14.0/packages/gatsby-transformer-sqip) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-sqip/package.json b/packages/gatsby-transformer-sqip/package.json index ad9ca72107c04..3c887da6b8ea3 100644 --- a/packages/gatsby-transformer-sqip/package.json +++ b/packages/gatsby-transformer-sqip/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-sqip", "description": "Generates geometric primitive version of images", - "version": "5.15.0-next.1", + "version": "5.16.0-next.0", "author": "Benedikt Rötsch ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -9,8 +9,8 @@ "dependencies": { "@babel/runtime": "^7.20.13", "fs-extra": "^11.2.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-plugin-sharp": "^5.15.0-next.1", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-plugin-sharp": "^5.16.0-next.0", "md5-file": "^5.0.0", "mini-svg-data-uri": "^1.4.4", "p-queue": "^6.6.2", @@ -19,7 +19,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "debug": "^4.3.4" }, diff --git a/packages/gatsby-transformer-toml/CHANGELOG.md b/packages/gatsby-transformer-toml/CHANGELOG.md index b0662018457d7..9cd352f8bd3c3 100644 --- a/packages/gatsby-transformer-toml/CHANGELOG.md +++ b/packages/gatsby-transformer-toml/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-toml@5.15.0/packages/gatsby-transformer-toml) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-toml + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-toml@5.14.0/packages/gatsby-transformer-toml) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-toml/package.json b/packages/gatsby-transformer-toml/package.json index 2e489897d68bc..e953b19c7f381 100644 --- a/packages/gatsby-transformer-toml/package.json +++ b/packages/gatsby-transformer-toml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-toml", "description": "Gatsby transformer plugin for toml", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Ruben Harutyunyan ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-toml#readme", diff --git a/packages/gatsby-transformer-xml/CHANGELOG.md b/packages/gatsby-transformer-xml/CHANGELOG.md index d56aeff5dfcac..5314da56ecaf0 100644 --- a/packages/gatsby-transformer-xml/CHANGELOG.md +++ b/packages/gatsby-transformer-xml/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-xml@5.15.0/packages/gatsby-transformer-xml) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-xml + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-xml@5.14.0/packages/gatsby-transformer-xml) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-xml/package.json b/packages/gatsby-transformer-xml/package.json index 8e9b32afcee3e..a3f75520d4fef 100644 --- a/packages/gatsby-transformer-xml/package.json +++ b/packages/gatsby-transformer-xml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-xml", "description": "Gatsby plugin for parsing XML files. It supports also attributes", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-xml#readme", diff --git a/packages/gatsby-transformer-yaml/CHANGELOG.md b/packages/gatsby-transformer-yaml/CHANGELOG.md index ff1cb25919745..4dcf654e90616 100644 --- a/packages/gatsby-transformer-yaml/CHANGELOG.md +++ b/packages/gatsby-transformer-yaml/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-yaml@5.15.0/packages/gatsby-transformer-yaml) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-transformer-yaml + ## [5.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-transformer-yaml@5.14.0/packages/gatsby-transformer-yaml) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-transformer-yaml/package.json b/packages/gatsby-transformer-yaml/package.json index 75499a508a156..5e01c76d0c7a6 100644 --- a/packages/gatsby-transformer-yaml/package.json +++ b/packages/gatsby-transformer-yaml/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-transformer-yaml", "description": "Gatsby transformer plugin for yaml", - "version": "5.15.0-next.0", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -14,7 +14,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/core": "^7.20.12", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3" }, "homepage": "https://github.com/gatsbyjs/gatsby/tree/master/packages/gatsby-transformer-yaml#readme", diff --git a/packages/gatsby-worker/CHANGELOG.md b/packages/gatsby-worker/CHANGELOG.md index 7b6b0d09f90f7..d50c9f3837e63 100644 --- a/packages/gatsby-worker/CHANGELOG.md +++ b/packages/gatsby-worker/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-worker@2.15.0/packages/gatsby-worker) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +**Note:** Version bump only for package gatsby-worker + ## [2.14.0](https://github.com/gatsbyjs/gatsby/commits/gatsby-worker@2.14.0/packages/gatsby-worker) (2024-11-06) [🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.14) diff --git a/packages/gatsby-worker/package.json b/packages/gatsby-worker/package.json index 7b73e6f7cea57..748557d98ac0f 100644 --- a/packages/gatsby-worker/package.json +++ b/packages/gatsby-worker/package.json @@ -1,7 +1,7 @@ { "name": "gatsby-worker", "description": "Utility to create worker pools", - "version": "2.15.0-next.0", + "version": "2.16.0-next.0", "author": "Michal Piechowiak", "bugs": { "url": "https://github.com/gatsbyjs/gatsby/issues" @@ -15,7 +15,7 @@ "devDependencies": { "@babel/cli": "^7.20.7", "@babel/register": "^7.18.9", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "cross-env": "^7.0.3", "rimraf": "^5.0.5", "typescript": "^5.1.6" diff --git a/packages/gatsby/CHANGELOG.md b/packages/gatsby/CHANGELOG.md index 50d9a0dd20e46..301062525beb1 100644 --- a/packages/gatsby/CHANGELOG.md +++ b/packages/gatsby/CHANGELOG.md @@ -3,6 +3,52 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.15.0](https://github.com/gatsbyjs/gatsby/commits/gatsby@5.15.0/packages/gatsby) (2025-08-27) + +[🧾 Release notes](https://www.gatsbyjs.com/docs/reference/release-notes/v5.15) + +#### Bug Fixes + +- support node 22 [#39349](https://github.com/gatsbyjs/gatsby/issues/39349) ([7451d2f](https://github.com/gatsbyjs/gatsby/commit/7451d2ff56c46b4d9ceebbb6e830fa83fcd29e5b)) +- update socket.io to address vulnerable subdeps [#39352](https://github.com/gatsbyjs/gatsby/issues/39352) ([6ba3b68](https://github.com/gatsbyjs/gatsby/commit/6ba3b68c216eead13e0f12d3dcf459e22e6cc8be)) +- use forked devcert to avoid pulling transitive deps from its @types/\* deps, handle change in tmp package [#39343](https://github.com/gatsbyjs/gatsby/issues/39343) ([4b1be67](https://github.com/gatsbyjs/gatsby/commit/4b1be67c4c3b4469600ea367d14e92a2e68cf67b)) +- bump adapter version in adapters manifest [#39342](https://github.com/gatsbyjs/gatsby/issues/39342) ([f4879c6](https://github.com/gatsbyjs/gatsby/commit/f4879c62d412609996aecf0b37a5735a3adfe573)) +- ensure rendering engine has vendored libvips [#39317](https://github.com/gatsbyjs/gatsby/issues/39317) ([1371440](https://github.com/gatsbyjs/gatsby/commit/13714407ad836e1cde7099d80e61b6682ffc42ad)) +- upgrade multer to resolve 3 security vulnerabilities resolve [#39307](https://github.com/gatsbyjs/gatsby/issues/39307) ([9708d4d](https://github.com/gatsbyjs/gatsby/commit/9708d4d4e76fbe4c832e22486bcc335f11c47adb)) +- Align types of rootNodeMap during root node tracking [#39262](https://github.com/gatsbyjs/gatsby/issues/39262) [#39261](https://github.com/gatsbyjs/gatsby/issues/39261) ([1825669](https://github.com/gatsbyjs/gatsby/commit/18256695bf4e349332318a841669f983ef92070c)) +- pin webpack [#39264](https://github.com/gatsbyjs/gatsby/issues/39264) ([dae8081](https://github.com/gatsbyjs/gatsby/commit/dae80818db95d2923ce40fc4292d6d91fbe1d75a)) +- update dependency chokidar to ^3.6.0 [#39174](https://github.com/gatsbyjs/gatsby/issues/39174) ([5717252](https://github.com/gatsbyjs/gatsby/commit/571725239b77f2b0604b43be3e1aaaf9cda4a5d8)) + +#### Chores + +- remove Gatsby Discord references [#39351](https://github.com/gatsbyjs/gatsby/issues/39351) ([c3708b0](https://github.com/gatsbyjs/gatsby/commit/c3708b068abba3a26e5cf229d6d4dc5813884acd)) +- relocate deprecated packages [#39350](https://github.com/gatsbyjs/gatsby/issues/39350) ([1711f91](https://github.com/gatsbyjs/gatsby/commit/1711f91c703e3de1c5166d75ec4033631007b09e)) +- bump path-to-regexp from 0.1.10 to 0.1.12 in /packages/gatsby [#39179](https://github.com/gatsbyjs/gatsby/issues/39179) ([4cedf13](https://github.com/gatsbyjs/gatsby/commit/4cedf13b6db7e4faada605123cb116134670a298)) + +### [5.14.6](https://github.com/gatsbyjs/gatsby/commits/gatsby@5.14.6/packages/gatsby) (2025-08-06) + +#### Bug Fixes + +- use forked devcert to avoid pulling transitive deps from its @types/\* deps, handle change in tmp package [#39343](https://github.com/gatsbyjs/gatsby/issues/39343) [#39345](https://github.com/gatsbyjs/gatsby/issues/39345) ([a9eb53c](https://github.com/gatsbyjs/gatsby/commit/a9eb53cb86258799c6a958cc8d02376120a3e270)) + +### [5.14.5](https://github.com/gatsbyjs/gatsby/commits/gatsby@5.14.5/packages/gatsby) (2025-06-20) + +#### Bug Fixes + +- ensure rendering engine has vendored libvips [#39317](https://github.com/gatsbyjs/gatsby/issues/39317) [#39320](https://github.com/gatsbyjs/gatsby/issues/39320) ([fd04eec](https://github.com/gatsbyjs/gatsby/commit/fd04eecde445a722f387447e7f198ef1df140d65)) + +### [5.14.4](https://github.com/gatsbyjs/gatsby/commits/gatsby@5.14.4/packages/gatsby) (2025-06-06) + +#### Bug Fixes + +- upgrade multer to resolve 3 security vulnerabilities resolve [#39307](https://github.com/gatsbyjs/gatsby/issues/39307) resolve [#39308](https://github.com/gatsbyjs/gatsby/issues/39308) ([e0cdefb](https://github.com/gatsbyjs/gatsby/commit/e0cdefb148accf40605f57ef3cb7e9ece423c826)) + +### [5.14.3](https://github.com/gatsbyjs/gatsby/commits/gatsby@5.14.3/packages/gatsby) (2025-04-09) + +#### Bug Fixes + +- Align types of rootNodeMap during root node tracking [#39262](https://github.com/gatsbyjs/gatsby/issues/39262) [#39270](https://github.com/gatsbyjs/gatsby/issues/39270) [#39261](https://github.com/gatsbyjs/gatsby/issues/39261) ([e990476](https://github.com/gatsbyjs/gatsby/commit/e990476537942aeab260af2104968d0898f5f90c)) + ### [5.14.2](https://github.com/gatsbyjs/gatsby/commits/gatsby@5.14.2/packages/gatsby) (2025-04-07) #### Bug Fixes diff --git a/packages/gatsby/README.md b/packages/gatsby/README.md index d4024c0429231..0764e22bbad21 100644 --- a/packages/gatsby/README.md +++ b/packages/gatsby/README.md @@ -34,9 +34,6 @@ PRs welcome! - - Follow @GatsbyJS -

@@ -52,9 +49,7 @@ · Contribute
- Support: Twitter, Discussions - & - Discord + Support: Discussions

Gatsby helps professional developers efficiently create maintainable, highly-performant, content-rich websites. @@ -160,6 +155,6 @@ Licensed under the [MIT License](./LICENSE). ## 💜 Thanks -Thanks go out to all our many contributors creating plugins, starters, videos, and blog posts. And a special appreciation for our community members helping with issues and PRs, or answering questions on Discord and GitHub Discussions. +Thanks go out to all our many contributors creating plugins, starters, videos, and blog posts. And a special appreciation for our community members helping with issues and PRs, or answering questions on GitHub Discussions. A big part of what makes Gatsby great is each and every one of you in the community. Your contributions enrich the Gatsby experience and make it better every day. diff --git a/packages/gatsby/adapters.js b/packages/gatsby/adapters.js index bed2efefd0d76..92ad83bcb893a 100644 --- a/packages/gatsby/adapters.js +++ b/packages/gatsby/adapters.js @@ -18,7 +18,7 @@ const adaptersManifest = [ versions: [ { gatsbyVersion: `^5.12.10`, - moduleVersion: `^1.0.4`, + moduleVersion: `^1.2.1`, }, { gatsbyVersion: `>=5.0.0 <5.12.10`, diff --git a/packages/gatsby/cache-dir/__tests__/minimal-config.js b/packages/gatsby/cache-dir/__tests__/minimal-config.js index bb147b5b49f82..1bed52d7bdd3e 100644 --- a/packages/gatsby/cache-dir/__tests__/minimal-config.js +++ b/packages/gatsby/cache-dir/__tests__/minimal-config.js @@ -25,8 +25,18 @@ it(`Builds cache-dir with minimal config`, done => { }) spawn.on(`close`, function () { - expect(stderr).toEqual(``) - expect(stdout).not.toEqual(``) + try { + // This is a little weird but this node.js deprecation warning is printed on node 22+ BUT we + // fully suppress all node.js warnings in CI for some reason. This pattern allows either + // nothing or just this warning to be printed to stderr, allowing it to pass locally and in CI. + expect(stderr).toMatch( + /^(|\(node:\d+\) \[DEP0180\] DeprecationWarning: fs\.Stats constructor is deprecated\.\s+\(Use `node --trace-deprecation \.\.\.` to show where the warning was created\)[\s\n]*)$/s + ) + expect(stdout).not.toEqual(``) + } catch (err) { + done(err) + return + } done() }) }, 30000) diff --git a/packages/gatsby/package.json b/packages/gatsby/package.json index 06b17c3f4ca92..f96dc86b2e56e 100644 --- a/packages/gatsby/package.json +++ b/packages/gatsby/package.json @@ -1,7 +1,7 @@ { "name": "gatsby", "description": "Blazing fast modern site generator for React", - "version": "5.15.0-next.2", + "version": "5.16.0-next.0", "author": "Kyle Mathews ", "bin": { "gatsby": "./cli.js" @@ -19,6 +19,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -48,8 +49,8 @@ "babel-loader": "^8.3.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-dynamic-import-node": "^2.3.3", - "babel-plugin-remove-graphql-queries": "^5.15.0-next.0", - "babel-preset-gatsby": "^3.15.0-next.0", + "babel-plugin-remove-graphql-queries": "^5.16.0-next.0", + "babel-preset-gatsby": "^3.16.0-next.0", "better-opn": "^2.1.1", "bluebird": "^3.7.2", "body-parser": "1.20.3", @@ -69,7 +70,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -91,19 +91,19 @@ "find-cache-dir": "^3.3.2", "fs-exists-cached": "1.0.0", "fs-extra": "^11.2.0", - "gatsby-cli": "^5.15.0-next.0", - "gatsby-core-utils": "^4.15.0-next.0", - "gatsby-graphiql-explorer": "^3.15.0-next.1", - "gatsby-legacy-polyfills": "^3.15.0-next.0", - "gatsby-link": "^5.15.0-next.1", - "gatsby-page-utils": "^3.15.0-next.1", - "gatsby-parcel-config": "1.15.0-next.0", - "gatsby-plugin-page-creator": "^5.15.0-next.1", - "gatsby-plugin-typescript": "^5.15.0-next.0", - "gatsby-plugin-utils": "^4.15.0-next.0", - "gatsby-react-router-scroll": "^6.15.0-next.0", - "gatsby-script": "^2.15.0-next.0", - "gatsby-worker": "^2.15.0-next.0", + "gatsby-cli": "^5.16.0-next.0", + "gatsby-core-utils": "^4.16.0-next.0", + "gatsby-graphiql-explorer": "^3.16.0-next.0", + "gatsby-legacy-polyfills": "^3.16.0-next.0", + "gatsby-link": "^5.16.0-next.0", + "gatsby-page-utils": "^3.16.0-next.0", + "gatsby-parcel-config": "1.16.0-next.0", + "gatsby-plugin-page-creator": "^5.16.0-next.0", + "gatsby-plugin-typescript": "^5.16.0-next.0", + "gatsby-plugin-utils": "^4.16.0-next.0", + "gatsby-react-router-scroll": "^6.16.0-next.0", + "gatsby-script": "^2.16.0-next.0", + "gatsby-worker": "^2.16.0-next.0", "glob": "^7.2.3", "globby": "^11.1.0", "got": "^11.8.6", @@ -128,7 +128,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -156,8 +156,8 @@ "shallow-compare": "^1.2.2", "signal-exit": "^3.0.7", "slugify": "^1.6.6", - "socket.io": "4.7.1", - "socket.io-client": "4.7.1", + "socket.io": "^4.8.1", + "socket.io-client": "^4.8.1", "stack-trace": "^0.0.10", "string-similarity": "^1.2.2", "strip-ansi": "^6.0.1", @@ -173,7 +173,7 @@ "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", - "webpack-virtual-modules": "^0.5.0", + "webpack-virtual-modules": "^0.6.2", "xstate": "^4.38.0", "yaml-loader": "^0.8.0" }, @@ -196,8 +196,7 @@ "@types/signal-exit": "^3.0.1", "@types/string-similarity": "^4.0.0", "@types/tmp": "^0.2.3", - "@types/webpack-virtual-modules": "^0.1.1", - "babel-preset-gatsby-package": "^3.15.0-next.0", + "babel-preset-gatsby-package": "^3.16.0-next.0", "copyfiles": "^2.4.1", "cross-env": "^7.0.3", "documentation": "^13.2.5", @@ -211,7 +210,7 @@ "zipkin-transport-http": "^0.22.0" }, "optionalDependencies": { - "gatsby-sharp": "^1.15.0-next.0" + "gatsby-sharp": "^1.16.0-next.0" }, "engines": { "node": ">=18.0.0" diff --git a/packages/gatsby/src/bootstrap/load-plugins/__tests__/load-plugins.ts b/packages/gatsby/src/bootstrap/load-plugins/__tests__/load-plugins.ts index 6902016fceefa..d8278529496f8 100644 --- a/packages/gatsby/src/bootstrap/load-plugins/__tests__/load-plugins.ts +++ b/packages/gatsby/src/bootstrap/load-plugins/__tests__/load-plugins.ts @@ -2,7 +2,6 @@ import { loadPlugins } from "../index" import { slash } from "gatsby-core-utils" import reporter from "gatsby-cli/lib/reporter" import { IFlattenedPlugin } from "../types" -import { silent as resolveFrom } from "resolve-from" const mockNonIncompatibleWarn = jest.fn() @@ -48,7 +47,6 @@ afterEach(() => { Object.keys(reporter).forEach(method => { reporter[method].mockClear() }) - resolveFrom.mockClear() mockProcessExit.mockClear() }) @@ -226,137 +224,6 @@ describe(`Load plugins`, () => { }) }) - describe(`gatsby-plugin-gatsby-cloud support`, () => { - it(`doesn't load gatsby-plugin-gatsby-cloud if not installed`, async () => { - resolveFrom.mockImplementation(() => undefined) - const config = { - plugins: [], - } - - let plugins = await loadPlugins(config, process.cwd()) - - plugins = replaceFieldsThatCanVary(plugins) - - expect(plugins).toEqual( - expect.arrayContaining([ - expect.not.objectContaining({ - name: `gatsby-plugin-gatsby-cloud`, - }), - ]) - ) - }) - - it(`doesn't load gatsby-plugin-gatsby-cloud if not provided and installed`, async () => { - resolveFrom.mockImplementation( - (rootDir, pkg) => rootDir + `/node_modules/` + pkg - ) - const config = { - plugins: [], - } - - let plugins = await loadPlugins(config, process.cwd()) - - plugins = replaceFieldsThatCanVary(plugins) - - expect(plugins).toEqual( - expect.arrayContaining([ - expect.not.objectContaining({ - name: `gatsby-plugin-gatsby-cloud`, - }), - ]) - ) - }) - - it(`loads gatsby-plugin-gatsby-cloud if not provided and installed on gatsby-cloud`, async () => { - resolveFrom.mockImplementation((rootDir, pkg) => { - if (pkg !== `gatsby-plugin-gatsby-cloud`) { - return undefined - } - return rootDir + `/node_modules/` + pkg - }) - const config = { - plugins: [], - } - - process.env.GATSBY_CLOUD = `true` - let plugins = await loadPlugins(config, process.cwd()) - delete process.env.GATSBY_CLOUD - - plugins = replaceFieldsThatCanVary(plugins) - - expect(plugins).toEqual( - expect.arrayContaining([ - expect.objectContaining({ - name: `gatsby-plugin-gatsby-cloud`, - }), - ]) - ) - }) - - it(`uses the user provided plugin-gatsby-cloud if provided`, async () => { - resolveFrom.mockImplementation((rootDir, pkg) => { - if (pkg !== `gatsby-plugin-gatsby-cloud`) { - return undefined - } - return rootDir + `/node_modules/` + pkg - }) - const config = { - plugins: [ - { - resolve: `gatsby-plugin-gatsby-cloud`, - options: { - generateMatchPathRewrites: false, - }, - }, - ], - } - - process.env.GATSBY_CLOUD = `true` - let plugins = await loadPlugins(config, process.cwd()) - delete process.env.GATSBY_CLOUD - - plugins = replaceFieldsThatCanVary(plugins) - - expect(plugins).toEqual( - expect.arrayContaining([ - expect.objectContaining({ - name: `gatsby-plugin-gatsby-cloud`, - pluginOptions: { - generateMatchPathRewrites: false, - plugins: [], - }, - }), - ]) - ) - }) - - it(`does not add gatsby-plugin-gatsby-cloud if it exists in config.plugins`, async () => { - resolveFrom.mockImplementation((rootDir, pkg) => { - if (pkg !== `gatsby-plugin-gatsby-cloud`) { - return undefined - } - return rootDir + `/node_modules/` + pkg - }) - const config = { - plugins: [ - `gatsby-plugin-gatsby-cloud`, - { resolve: `gatsby-plugin-gatsby-cloud` }, - ], - } - - let plugins = await loadPlugins(config, process.cwd()) - - plugins = replaceFieldsThatCanVary(plugins) - - const cloudPlugins = plugins.filter( - (plugin: { name: string }) => - plugin.name === `gatsby-plugin-gatsby-cloud` - ) - - expect(cloudPlugins.length).toEqual(1) - }) - }) - describe(`plugin options validation`, () => { it(`throws a structured error with invalid plugin options`, async () => { const invalidPlugins = [ diff --git a/packages/gatsby/src/bootstrap/load-plugins/load-internal-plugins.ts b/packages/gatsby/src/bootstrap/load-plugins/load-internal-plugins.ts index e58a38e1deb64..0386364b66ea0 100644 --- a/packages/gatsby/src/bootstrap/load-plugins/load-internal-plugins.ts +++ b/packages/gatsby/src/bootstrap/load-plugins/load-internal-plugins.ts @@ -1,7 +1,6 @@ import { slash } from "gatsby-core-utils" import { uniqWith, isEqual } from "lodash" import path from "path" -import reporter from "gatsby-cli/lib/reporter" import { store } from "../../redux" import { IPluginInfo, @@ -12,13 +11,6 @@ import { import { processPlugin } from "./process-plugin" import { createPluginId } from "./utils/create-id" import { createFileContentHash } from "./utils/create-hash" -import { - addGatsbyPluginCloudPluginWhenInstalled, - addGatsbyPluginPreviewWhenInstalled, - incompatibleGatsbyCloudPlugin, - GATSBY_CLOUD_PLUGIN_NAME, - GATSBY_PLUGIN_PREVIEW_NAME, -} from "./utils/handle-gatsby-cloud" import { getResolvedFieldsForPlugin } from "../../utils/parcel/compile-gatsby-files" const TYPESCRIPT_PLUGIN_NAME = `gatsby-plugin-typescript` @@ -76,29 +68,6 @@ export function loadInternalPlugins( ) }) - if ( - configuredPluginNames.has(GATSBY_CLOUD_PLUGIN_NAME) && - incompatibleGatsbyCloudPlugin(plugins) - ) { - reporter.panic( - `Plugin gatsby-plugin-gatsby-cloud is not compatible with your gatsby version. Please upgrade to gatsby-plugin-gatsby-cloud@next` - ) - } - - if ( - !configuredPluginNames.has(GATSBY_CLOUD_PLUGIN_NAME) && - (process.env.GATSBY_CLOUD === `true` || process.env.GATSBY_CLOUD === `1`) - ) { - addGatsbyPluginCloudPluginWhenInstalled(plugins, rootDir) - } - - if ( - !configuredPluginNames.has(GATSBY_PLUGIN_PREVIEW_NAME) && - (process.env.GATSBY_CLOUD === `true` || process.env.GATSBY_CLOUD === `1`) - ) { - addGatsbyPluginPreviewWhenInstalled(plugins, rootDir) - } - // Support Typescript by default but allow users to override it if (!configuredPluginNames.has(TYPESCRIPT_PLUGIN_NAME)) { const processedTypeScriptPlugin = processPlugin( diff --git a/packages/gatsby/src/bootstrap/load-plugins/utils/handle-gatsby-cloud.ts b/packages/gatsby/src/bootstrap/load-plugins/utils/handle-gatsby-cloud.ts deleted file mode 100644 index 8191ecf20c55b..0000000000000 --- a/packages/gatsby/src/bootstrap/load-plugins/utils/handle-gatsby-cloud.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { silent as resolveFromSilent } from "resolve-from" -import * as semver from "semver" -import { IPluginInfo } from "../types" -import { processPlugin } from "../process-plugin" - -export const GATSBY_CLOUD_PLUGIN_NAME = `gatsby-plugin-gatsby-cloud` -export const GATSBY_PLUGIN_PREVIEW_NAME = `@gatsby-cloud-pkg/gatsby-plugin-preview` - -function addCloudPluginWhenInstalled( - plugins: Array, - rootDir: string, - name: string -): void { - const cloudPluginLocation = resolveFromSilent(rootDir, name) - - if (cloudPluginLocation) { - const processedGatsbyCloudPlugin = processPlugin( - { - resolve: name, - options: {}, - }, - rootDir - ) - plugins.push(processedGatsbyCloudPlugin) - } -} - -export function addGatsbyPluginPreviewWhenInstalled( - plugins: Array, - rootDir: string -): void { - addCloudPluginWhenInstalled(plugins, rootDir, GATSBY_PLUGIN_PREVIEW_NAME) -} - -export function addGatsbyPluginCloudPluginWhenInstalled( - plugins: Array, - rootDir: string -): void { - addCloudPluginWhenInstalled(plugins, rootDir, GATSBY_CLOUD_PLUGIN_NAME) -} - -export function incompatibleGatsbyCloudPlugin( - plugins: Array -): boolean { - const plugin = plugins.find( - plugin => plugin.name === GATSBY_CLOUD_PLUGIN_NAME - ) - - return !semver.satisfies(plugin!.version, `>=4.0.0-alpha`, { - includePrerelease: true, - }) -} diff --git a/packages/gatsby/src/commands/develop.ts b/packages/gatsby/src/commands/develop.ts index 43c7fd40231be..4f94434f664f0 100644 --- a/packages/gatsby/src/commands/develop.ts +++ b/packages/gatsby/src/commands/develop.ts @@ -57,8 +57,11 @@ class ControllableScript { } start(): void { const args: Array = [] + + const dotCachePath = path.join(process.cwd(), `.cache`) + fs.mkdirpSync(dotCachePath) const tmpFileName = tmp.tmpNameSync({ - tmpdir: path.join(process.cwd(), `.cache`), + tmpdir: dotCachePath, }) fs.outputFileSync(tmpFileName, this.script) this.isRunning = true diff --git a/packages/gatsby/src/schema/__tests__/queries.js b/packages/gatsby/src/schema/__tests__/queries.js index 0cc57f4dd6c7e..5f7b9a5be8055 100644 --- a/packages/gatsby/src/schema/__tests__/queries.js +++ b/packages/gatsby/src/schema/__tests__/queries.js @@ -12,6 +12,14 @@ const mockActualOrderBy = jest.requireActual(`lodash`).orderBy jest.mock(`lodash/orderBy`, () => jest.fn(mockActualOrderBy)) const orderBySpy = require(`lodash/orderBy`) +// Some tests here rely on triggering garbage collection with `global.gc()`. GC events are not +// deterministic - there is no guarantee that `WeakRef.prototype.deref()` will trigger a GC +// immediately and return `undefined`: +// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakRef#notes_on_weakrefs +// Node.js 20 introduced GC behaviour changes that make these tests unreliable. Only run them on +// Node < 20 where they've historically passed. +const shouldTestGC = Number(process.versions.node.split(`.`)[0]) < 20 + const getTestNodes = require(`./fixtures/queries`) const { getDataStore, getNode } = require(`../../datastore`) @@ -1228,47 +1236,48 @@ describe(`Query schema`, () => { } `) }) + ;(shouldTestGC ? it : it.skip)( + `works correctly if GC happen mid running`, + async () => { + // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js + const v8 = require(`v8`) + const vm = require(`vm`) + v8.setFlagsFromString(`--expose_gc`) + const gc = vm.runInNewContext(`gc`) - it(`works correctly if GC happen mid running`, async () => { - // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js - const v8 = require(`v8`) - const vm = require(`vm`) - v8.setFlagsFromString(`--expose_gc`) - const gc = vm.runInNewContext(`gc`) - - const { clearKeptObjects } = require(`lmdb`) - - orderBySpy.mockImplementationOnce((...args) => { - // eslint thinks that WeakRef is not defined for some reason :shrug: - // eslint-disable-next-line no-undef - const weakNode = new WeakRef(getNode(`md1`)) - - // spy is keeping nodes in memory due to `.calls` array - apiRunnerNode.mockClear() - // very implementation specific case: - // We don't hold full nodes strongly in gatsby anymore so they can be potentially - // GCed mid execution of query. For this test we force all weakly held nodes to be - // dropped - clearKeptObjects() - gc() - - // now we shouldn't have that node in memory - if (weakNode.deref()) { - throw new Error( - `Test setup is broken, something is keeping a node in memory` - ) - } - - return mockActualOrderBy(...args) - }) + const { clearKeptObjects } = require(`lmdb`) - expect(orderBySpy).not.toBeCalled() + orderBySpy.mockImplementationOnce((...args) => { + // eslint thinks that WeakRef is not defined for some reason :shrug: + // eslint-disable-next-line no-undef + const weakNode = new WeakRef(getNode(`md1`)) - // sort added only to hit code path using `orderBy`, - // which we use to force GC to simulate node "randomly" - // releasing nodes from memory as they shouldn't be strongly - // held - const query = ` + // spy is keeping nodes in memory due to `.calls` array + apiRunnerNode.mockClear() + // very implementation specific case: + // We don't hold full nodes strongly in gatsby anymore so they can be potentially + // GCed mid execution of query. For this test we force all weakly held nodes to be + // dropped + clearKeptObjects() + gc() + + // now we shouldn't have that node in memory + if (weakNode.deref()) { + throw new Error( + `Test setup is broken, something is keeping a node in memory` + ) + } + + return mockActualOrderBy(...args) + }) + + expect(orderBySpy).not.toBeCalled() + + // sort added only to hit code path using `orderBy`, + // which we use to force GC to simulate node "randomly" + // releasing nodes from memory as they shouldn't be strongly + // held + const query = ` { allMarkdown(sort: { fields: id }) { group(field: frontmatter___authors___name) { @@ -1285,54 +1294,55 @@ describe(`Query schema`, () => { } } ` - const results = await runQuery(query) + const results = await runQuery(query) - // make sure we released all nodes from memory in middle of the run - expect(orderBySpy).toBeCalled() + // make sure we released all nodes from memory in middle of the run + expect(orderBySpy).toBeCalled() - const expected = { - allMarkdown: { - group: [ - { - fieldValue: `Author 1`, - edges: [ - { - node: { - frontmatter: { - title: `Markdown File 1`, - date: `2019-01-01`, + const expected = { + allMarkdown: { + group: [ + { + fieldValue: `Author 1`, + edges: [ + { + node: { + frontmatter: { + title: `Markdown File 1`, + date: `2019-01-01`, + }, }, }, - }, - { - node: { - frontmatter: { - title: `Markdown File 2`, - date: null, + { + node: { + frontmatter: { + title: `Markdown File 2`, + date: null, + }, }, }, - }, - ], - }, - { - fieldValue: `Author 2`, - edges: [ - { - node: { - frontmatter: { - title: `Markdown File 1`, - date: `2019-01-01`, + ], + }, + { + fieldValue: `Author 2`, + edges: [ + { + node: { + frontmatter: { + title: `Markdown File 1`, + date: `2019-01-01`, + }, }, }, - }, - ], - }, - ], - }, + ], + }, + ], + }, + } + expect(results.errors).toBeUndefined() + expect(results.data).toEqual(expected) } - expect(results.errors).toBeUndefined() - expect(results.data).toEqual(expected) - }) + ) }) describe(`distinct field`, () => { @@ -1415,66 +1425,68 @@ describe(`Query schema`, () => { } `) }) + ;(shouldTestGC ? it : it.skip)( + `works correctly if GC happen mid running`, + async () => { + // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js + const v8 = require(`v8`) + const vm = require(`vm`) + v8.setFlagsFromString(`--expose_gc`) + const gc = vm.runInNewContext(`gc`) - it(`works correctly if GC happen mid running`, async () => { - // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js - const v8 = require(`v8`) - const vm = require(`vm`) - v8.setFlagsFromString(`--expose_gc`) - const gc = vm.runInNewContext(`gc`) - - const { clearKeptObjects } = require(`lmdb`) - - orderBySpy.mockImplementationOnce((...args) => { - // eslint thinks that WeakRef is not defined for some reason :shrug: - // eslint-disable-next-line no-undef - const weakNode = new WeakRef(getNode(`md1`)) - - // spy is keeping nodes in memory due to `.calls` array - apiRunnerNode.mockClear() - // very implementation specific case: - // We don't hold full nodes strongly in gatsby anymore so they can be potentially - // GCed mid execution of query. For this test we force all weakly held nodes to be - // dropped - clearKeptObjects() - gc() - - // now we shouldn't have that node in memory - if (weakNode.deref()) { - throw new Error( - `Test setup is broken, something is keeping a node in memory` - ) - } - - return mockActualOrderBy(...args) - }) + const { clearKeptObjects } = require(`lmdb`) + + orderBySpy.mockImplementationOnce((...args) => { + // eslint thinks that WeakRef is not defined for some reason :shrug: + // eslint-disable-next-line no-undef + const weakNode = new WeakRef(getNode(`md1`)) - expect(orderBySpy).not.toBeCalled() + // spy is keeping nodes in memory due to `.calls` array + apiRunnerNode.mockClear() + // very implementation specific case: + // We don't hold full nodes strongly in gatsby anymore so they can be potentially + // GCed mid execution of query. For this test we force all weakly held nodes to be + // dropped + clearKeptObjects() + gc() - // sort added only to hit code path using `orderBy`, - // which we use to force GC to simulate node "randomly" - // releasing nodes from memory as they shouldn't be strongly - // held - const query = ` + // now we shouldn't have that node in memory + if (weakNode.deref()) { + throw new Error( + `Test setup is broken, something is keeping a node in memory` + ) + } + + return mockActualOrderBy(...args) + }) + + expect(orderBySpy).not.toBeCalled() + + // sort added only to hit code path using `orderBy`, + // which we use to force GC to simulate node "randomly" + // releasing nodes from memory as they shouldn't be strongly + // held + const query = ` { allMarkdown(sort: { fields: id }) { distinct(field: frontmatter___authors___name) } } ` - const results = await runQuery(query) + const results = await runQuery(query) - // make sure we released all nodes from memory in middle of the run - expect(orderBySpy).toBeCalled() + // make sure we released all nodes from memory in middle of the run + expect(orderBySpy).toBeCalled() - const expected = { - allMarkdown: { - distinct: [`Author 1`, `Author 2`], - }, + const expected = { + allMarkdown: { + distinct: [`Author 1`, `Author 2`], + }, + } + expect(results.errors).toBeUndefined() + expect(results.data).toEqual(expected) } - expect(results.errors).toBeUndefined() - expect(results.data).toEqual(expected) - }) + ) }) describe(`aggregation fields`, () => { @@ -1517,61 +1529,63 @@ describe(`Query schema`, () => { expect(results.errors).toBeUndefined() expect(results.data.allMarkdown.max).toBeNull() }) + ;(shouldTestGC ? it : it.skip)( + `works correctly on fields with resolver if GC happen mid running`, + async () => { + // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js + const v8 = require(`v8`) + const vm = require(`vm`) + v8.setFlagsFromString(`--expose_gc`) + const gc = vm.runInNewContext(`gc`) + + const { clearKeptObjects } = require(`lmdb`) + + orderBySpy.mockImplementationOnce((...args) => { + // eslint thinks that WeakRef is not defined for some reason :shrug: + // eslint-disable-next-line no-undef + const weakNode = new WeakRef(getNode(`md1`)) + + // spy is keeping nodes in memory due to `.calls` array + apiRunnerNode.mockClear() + // very implementation specific case: + // We don't hold full nodes strongly in gatsby anymore so they can be potentially + // GCed mid execution of query. For this test we force all weakly held nodes to be + // dropped + clearKeptObjects() + gc() + + // now we shouldn't have that node in memory + if (weakNode.deref()) { + throw new Error( + `Test setup is broken, something is keeping a node in memory` + ) + } - it(`works correctly on fields with resolver if GC happen mid running`, async () => { - // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js - const v8 = require(`v8`) - const vm = require(`vm`) - v8.setFlagsFromString(`--expose_gc`) - const gc = vm.runInNewContext(`gc`) - - const { clearKeptObjects } = require(`lmdb`) - - orderBySpy.mockImplementationOnce((...args) => { - // eslint thinks that WeakRef is not defined for some reason :shrug: - // eslint-disable-next-line no-undef - const weakNode = new WeakRef(getNode(`md1`)) - - // spy is keeping nodes in memory due to `.calls` array - apiRunnerNode.mockClear() - // very implementation specific case: - // We don't hold full nodes strongly in gatsby anymore so they can be potentially - // GCed mid execution of query. For this test we force all weakly held nodes to be - // dropped - clearKeptObjects() - gc() - - // now we shouldn't have that node in memory - if (weakNode.deref()) { - throw new Error( - `Test setup is broken, something is keeping a node in memory` - ) - } - - return mockActualOrderBy(...args) - }) + return mockActualOrderBy(...args) + }) - expect(orderBySpy).not.toBeCalled() + expect(orderBySpy).not.toBeCalled() - // sort added only to hit code path using `orderBy`, - // which we use to force GC to simulate node "randomly" - // releasing nodes from memory as they shouldn't be strongly - // held - const query = ` + // sort added only to hit code path using `orderBy`, + // which we use to force GC to simulate node "randomly" + // releasing nodes from memory as they shouldn't be strongly + // held + const query = ` { allMarkdown(sort: { fields: id }) { max(field: frontmatter___priceInCents) } } ` - const results = await runQuery(query) + const results = await runQuery(query) - // make sure we released all nodes from memory in middle of the run - expect(orderBySpy).toBeCalled() + // make sure we released all nodes from memory in middle of the run + expect(orderBySpy).toBeCalled() - expect(results.errors).toBeUndefined() - expect(results.data.allMarkdown.max).toEqual(399) - }) + expect(results.errors).toBeUndefined() + expect(results.data.allMarkdown.max).toEqual(399) + } + ) }) describe(`min`, () => { @@ -1613,61 +1627,63 @@ describe(`Query schema`, () => { expect(results.errors).toBeUndefined() expect(results.data.allMarkdown.min).toBeNull() }) + ;(shouldTestGC ? it : it.skip)( + `works correctly on fields with resolver if GC happen mid running`, + async () => { + // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js + const v8 = require(`v8`) + const vm = require(`vm`) + v8.setFlagsFromString(`--expose_gc`) + const gc = vm.runInNewContext(`gc`) + + const { clearKeptObjects } = require(`lmdb`) + + orderBySpy.mockImplementationOnce((...args) => { + // eslint thinks that WeakRef is not defined for some reason :shrug: + // eslint-disable-next-line no-undef + const weakNode = new WeakRef(getNode(`md1`)) + + // spy is keeping nodes in memory due to `.calls` array + apiRunnerNode.mockClear() + // very implementation specific case: + // We don't hold full nodes strongly in gatsby anymore so they can be potentially + // GCed mid execution of query. For this test we force all weakly held nodes to be + // dropped + clearKeptObjects() + gc() + + // now we shouldn't have that node in memory + if (weakNode.deref()) { + throw new Error( + `Test setup is broken, something is keeping a node in memory` + ) + } - it(`works correctly on fields with resolver if GC happen mid running`, async () => { - // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js - const v8 = require(`v8`) - const vm = require(`vm`) - v8.setFlagsFromString(`--expose_gc`) - const gc = vm.runInNewContext(`gc`) - - const { clearKeptObjects } = require(`lmdb`) - - orderBySpy.mockImplementationOnce((...args) => { - // eslint thinks that WeakRef is not defined for some reason :shrug: - // eslint-disable-next-line no-undef - const weakNode = new WeakRef(getNode(`md1`)) - - // spy is keeping nodes in memory due to `.calls` array - apiRunnerNode.mockClear() - // very implementation specific case: - // We don't hold full nodes strongly in gatsby anymore so they can be potentially - // GCed mid execution of query. For this test we force all weakly held nodes to be - // dropped - clearKeptObjects() - gc() - - // now we shouldn't have that node in memory - if (weakNode.deref()) { - throw new Error( - `Test setup is broken, something is keeping a node in memory` - ) - } - - return mockActualOrderBy(...args) - }) + return mockActualOrderBy(...args) + }) - expect(orderBySpy).not.toBeCalled() + expect(orderBySpy).not.toBeCalled() - // sort added only to hit code path using `orderBy`, - // which we use to force GC to simulate node "randomly" - // releasing nodes from memory as they shouldn't be strongly - // held - const query = ` + // sort added only to hit code path using `orderBy`, + // which we use to force GC to simulate node "randomly" + // releasing nodes from memory as they shouldn't be strongly + // held + const query = ` { allMarkdown(sort: { fields: id }) { min(field: frontmatter___priceInCents) } } ` - const results = await runQuery(query) + const results = await runQuery(query) - // make sure we released all nodes from memory in middle of the run - expect(orderBySpy).toBeCalled() + // make sure we released all nodes from memory in middle of the run + expect(orderBySpy).toBeCalled() - expect(results.errors).toBeUndefined() - expect(results.data.allMarkdown.min).toEqual(199) - }) + expect(results.errors).toBeUndefined() + expect(results.data.allMarkdown.min).toEqual(199) + } + ) }) describe(`sum`, () => { @@ -1708,61 +1724,63 @@ describe(`Query schema`, () => { expect(results.errors).toBeUndefined() expect(results.data.allMarkdown.sum).toBeNull() }) + ;(shouldTestGC ? it : it.skip)( + `works correctly on fields with resolver if GC happen mid running`, + async () => { + // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js + const v8 = require(`v8`) + const vm = require(`vm`) + v8.setFlagsFromString(`--expose_gc`) + const gc = vm.runInNewContext(`gc`) + + const { clearKeptObjects } = require(`lmdb`) + + orderBySpy.mockImplementationOnce((...args) => { + // eslint thinks that WeakRef is not defined for some reason :shrug: + // eslint-disable-next-line no-undef + const weakNode = new WeakRef(getNode(`md1`)) + + // spy is keeping nodes in memory due to `.calls` array + apiRunnerNode.mockClear() + // very implementation specific case: + // We don't hold full nodes strongly in gatsby anymore so they can be potentially + // GCed mid execution of query. For this test we force all weakly held nodes to be + // dropped + clearKeptObjects() + gc() + + // now we shouldn't have that node in memory + if (weakNode.deref()) { + throw new Error( + `Test setup is broken, something is keeping a node in memory` + ) + } - it(`works correctly on fields with resolver if GC happen mid running`, async () => { - // borrowed from https://unpkg.com/browse/expose-gc@1.0.0/function.js - const v8 = require(`v8`) - const vm = require(`vm`) - v8.setFlagsFromString(`--expose_gc`) - const gc = vm.runInNewContext(`gc`) - - const { clearKeptObjects } = require(`lmdb`) - - orderBySpy.mockImplementationOnce((...args) => { - // eslint thinks that WeakRef is not defined for some reason :shrug: - // eslint-disable-next-line no-undef - const weakNode = new WeakRef(getNode(`md1`)) - - // spy is keeping nodes in memory due to `.calls` array - apiRunnerNode.mockClear() - // very implementation specific case: - // We don't hold full nodes strongly in gatsby anymore so they can be potentially - // GCed mid execution of query. For this test we force all weakly held nodes to be - // dropped - clearKeptObjects() - gc() - - // now we shouldn't have that node in memory - if (weakNode.deref()) { - throw new Error( - `Test setup is broken, something is keeping a node in memory` - ) - } - - return mockActualOrderBy(...args) - }) + return mockActualOrderBy(...args) + }) - expect(orderBySpy).not.toBeCalled() + expect(orderBySpy).not.toBeCalled() - // sort added only to hit code path using `orderBy`, - // which we use to force GC to simulate node "randomly" - // releasing nodes from memory as they shouldn't be strongly - // held - const query = ` + // sort added only to hit code path using `orderBy`, + // which we use to force GC to simulate node "randomly" + // releasing nodes from memory as they shouldn't be strongly + // held + const query = ` { allMarkdown(sort: { fields: id }) { sum(field: frontmatter___priceInCents) } } ` - const results = await runQuery(query) + const results = await runQuery(query) - // make sure we released all nodes from memory in middle of the run - expect(orderBySpy).toBeCalled() + // make sure we released all nodes from memory in middle of the run + expect(orderBySpy).toBeCalled() - expect(results.errors).toBeUndefined() - expect(results.data.allMarkdown.sum).toEqual(199 + 399) - }) + expect(results.errors).toBeUndefined() + expect(results.data.allMarkdown.sum).toEqual(199 + 399) + } + ) }) it(`calculates aggregation in recursively grouped query results`, async () => { diff --git a/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts b/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts index 0a559b951ea97..3d62aec86bb15 100644 --- a/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts +++ b/packages/gatsby/src/schema/graphql-engine/bundle-webpack.ts @@ -233,18 +233,24 @@ function checkIfNeedToInstallMissingSharp( currentTarget: IPlatformAndArch ): IBinaryPackageStatus | undefined { try { - // check if shapr is resolvable - const { version: sharpVersion } = require(`sharp/package.json`) + // check if sharp is resolvable + const sharp: typeof import("sharp") = require(`sharp`) if (isEqual(functionsTarget, currentTarget)) { - return undefined + // if current platform and target is the same as functions target, we need to check if vendored libvips + // exists in the current sharp installation as it will be needed in lambda + if (sharp.vendor.installed.includes(sharp.vendor.current)) { + // vendored libvips is installed, so we can use it + return undefined + } } return checkIfInstalledInInternalPackagesCache( { needToInstall: true, packageName: `sharp`, - packageVersion: sharpVersion, + packageVersion: + sharp.versions.sharp ?? require(`sharp/package.json`).version, }, functionsTarget ) @@ -279,6 +285,10 @@ async function installMissing( env: { npm_config_arch: functionsTarget.arch, npm_config_platform: functionsTarget.platform, + // force sharp to download vendored libvips and not skip it if globally installed libvips matches sharp requirements + // so that produced function is self-sufficient and doesn't rely on function execution environment having (same) + // globally available libvips + SHARP_IGNORE_GLOBAL_LIBVIPS: `1`, }, } diff --git a/packages/gatsby/src/utils/__tests__/get-ssl-cert.ts b/packages/gatsby/src/utils/__tests__/get-ssl-cert.ts index 4959e430e11ea..772a0940df11a 100644 --- a/packages/gatsby/src/utils/__tests__/get-ssl-cert.ts +++ b/packages/gatsby/src/utils/__tests__/get-ssl-cert.ts @@ -11,13 +11,13 @@ jest.mock(`gatsby-cli/lib/reporter`, () => { info: jest.fn(), } }) -jest.mock(`devcert`, () => { +jest.mock(`@expo/devcert`, () => { return { certificateFor: jest.fn(), } }) -import { certificateFor as getDevCert } from "devcert" +import { certificateFor as getDevCert } from "@expo/devcert" import reporter from "gatsby-cli/lib/reporter" import { getSslCert, IGetSslCertArgs } from "../get-ssl-cert" diff --git a/packages/gatsby/src/utils/get-ssl-cert.ts b/packages/gatsby/src/utils/get-ssl-cert.ts index ac9db95f114ee..5bd165ee590a3 100644 --- a/packages/gatsby/src/utils/get-ssl-cert.ts +++ b/packages/gatsby/src/utils/get-ssl-cert.ts @@ -86,7 +86,7 @@ export async function getSslCert({ const mkdtemp = fs.mkdtempSync(path.join(os.tmpdir(), `home-`)) process.env.HOME = mkdtemp } - const getDevCert = require(`devcert`).certificateFor + const getDevCert = require(`@expo/devcert`).certificateFor const { caPath, key, cert } = await getDevCert(name, { getCaPath: true, skipCertutilInstall: false, diff --git a/renovate.json5 b/renovate.json5 index 1075566e9f84a..422adc69cd949 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,28954 +1,35 @@ { - "extends": [ - ":separateMajorReleases", - ":combinePatchMinorReleases", - ":ignoreUnstable", - ":prImmediately", - ":semanticPrefixFixDepsChoreOthers", - ":automergeDisabled", - ":disablePeerDependencies", - ":maintainLockFilesDisabled", - ":disableRateLimiting", - ":label(topic: automation)", - ":ignoreModulesAndTests", - ":enableVulnerabilityAlerts" - ], - "includePaths": [ - "package.json", - "packages/**", - "starters/**", + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", ":widenPeerDependencies", ":automergeDisabled"], + "schedule": ["before 6am"], + "ignorePaths": [ "examples/**", - "e2e-tests/**" - ], - "major": { - "dependencyDashboardApproval": true - }, - "dependencyDashboard": true, - "ignoreDeps": [ - "react", - "react-dom", - "uuid", - "gatsby-interface" + "starters/**", + "e2e-tests/**", + "integration-tests/**", + "benchmarks/**", + "deprecated-packages/**", + "**/fixtures/**", + "**/__fixtures__/**", + "**/test/**", + "**/tests/**", + "**/__tests__/**" ], "rangeStrategy": "bump", - "bumpVersion": null, - "prHourlyLimit": 0, - "stabilityDays": 2, - "postUpdateOptions": [ - "yarnDedupeHighest" - ], - "timezone": "GMT", - "schedule": [ - "before 7am on the first day of the month" - ], - "updateNotScheduled": false, + "dependencyDashboard": true, "packageRules": [ { - "matchDepTypes": [ - "engines", - "@types/node" - ], + "matchDepTypes": ["devDependencies"], "enabled": false }, { - "groupName": "starters and examples", - "commitMessageTopic": "starters and examples", - "groupSlug": "starters-examples-minor", - "matchPaths": [ - "starters/**", - "examples/**" - ], - "schedule": "before 7am on Monday", - "matchUpdateTypes": [ - "patch", - "minor" - ] - }, - { - "extends": [ - "monorepo:gatsby" - ], - "commitMessageTopic": "starters and examples Gatsby packages", - "groupName": "starters and examples - Gatsby", - "groupSlug": "starters-examples-gatsby-minor", - "matchPaths": [ - "starters/**", - "examples/**" - ], - "automerge": true, - "stabilityDays": 0, - "prPriority": 50, - "schedule": "at any time", - "matchUpdateTypes": [ - "patch", - "minor" - ] - }, - { - "groupName": "starters and examples", - "commitMessageTopic": "starters and examples", - "matchPaths": [ - "starters/**", - "examples/**" - ], - "schedule": "before 7am on Monday", - "matchUpdateTypes": [ - "major" - ], - "groupSlug": "starters-examples-major", - "dependencyDashboardApproval": false - }, - { - "groupName": "E2E tests", - "commitMessageTopic": "e2e-tests", - "matchPaths": [ - "e2e-tests/**" - ], - "schedule": "before 7am on Monday", - "matchUpdateTypes": [ - "major" - ], - "groupSlug": "e2e-tests-major", - "dependencyDashboardApproval": false - }, - { - "extends": [ - "monorepo:gatsby" - ], - "commitMessageTopic": "starters and examples Gatsby packages", - "groupName": "starters and examples - Gatsby", - "matchPaths": [ - "starters/**", - "examples/**" - ], - "stabilityDays": 0, - "prPriority": 50, - "schedule": "at any time", - "matchUpdateTypes": [ - "major" - ], - "groupSlug": "starters-examples-gatsby-major", - "dependencyDashboardApproval": false - }, - { - "groupName": "babel monorepo", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchSourceUrlPrefixes": [ - "https://github.com/babel/babel" - ] - }, - { - "groupName": "lodash monorepo", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchSourceUrlPrefixes": [ - "https://github.com/lodash" - ] - }, - { - "groupName": "gatsby monorepo", - "groupSlug": "gatsby-monorepo", - "matchPaths": [ - "+(package.json)" - ], - "dependencyDashboardApproval": false, - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "commitMessageTopic": "dependencies for Gatsby monorepo", - "excludePackagePatterns": [ - "^@babel" - ] - }, - { - "groupName": "formatting & linting", - "commitMessageTopic": "Formatting & linting", - "matchPaths": [ - "+(package.json)" - ], - "matchPackageNames": [ - "eslint", - "prettier" - ], - "matchPackagePatterns": [ - "^eslint-" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "cross-env", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "cross-env" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "execa", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "execa" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "mini-css-extract-plugin", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "mini-css-extract-plugin" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ] - }, - { - "groupName": "sharp", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ] - }, - { - "groupName": "typescript", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "typescript" - ], - "matchPackagePatterns": [ - "^@typescript-eslint/" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "cypress", - "matchPaths": [ - "e2e-tests/**/package.json", - "examples/**/package.json" - ], - "matchPackageNames": [ - "cypress", - "cypress-image-snapshot" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "chalk", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "chalk" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "fs-extra", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "fs-extra", - "@types/fs-extra" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "testing library", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackagePatterns": [ - "^@testing-library/" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "cheerio", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "cheerio" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "semver", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "semver", - "@types/semver" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "core-js", - "matchPaths": [ - "+(package.json)", - "packages/!(gatsby-legacy-polyfills)/**/package.json" - ], - "matchPackageNames": [ - "core-js", - "core-js-compat" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "chokidar", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackageNames": [ - "chokidar" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "Parcel", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackagePatterns": [ - "^@parcel/" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "groupName": "lmdb", - "matchPaths": [ - "+(package.json)", - "packages/**/package.json" - ], - "matchPackagePatterns": [ - "lmdb" - ], - "matchUpdateTypes": [ - "major", - "minor", - "patch" - ], - "matchDepTypes": [ - "dependencies", - "devDependencies" - ], - "dependencyDashboardApproval": false - }, - { - "matchPaths": [ - "packages/babel-plugin-remove-graphql-queries/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for babel-plugin-remove-graphql-queries", - "groupSlug": "babel-plugin-remove-graphql-queries-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-plugin-remove-graphql-queries/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for babel-plugin-remove-graphql-queries", - "groupSlug": "babel-plugin-remove-graphql-queries-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-plugin-remove-graphql-queries/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for babel-plugin-remove-graphql-queries", - "groupSlug": "babel-plugin-remove-graphql-queries-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-plugin-remove-graphql-queries/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for babel-plugin-remove-graphql-queries", - "groupSlug": "babel-plugin-remove-graphql-queries-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/babel-plugin-remove-graphql-queries/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for babel-plugin-remove-graphql-queries", - "groupSlug": "babel-plugin-remove-graphql-queries-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-plugin-remove-graphql-queries/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for babel-plugin-remove-graphql-queries", - "groupSlug": "babel-plugin-remove-graphql-queries-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-plugin-remove-graphql-queries{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby-package/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for babel-preset-gatsby-package", - "groupSlug": "babel-preset-gatsby-package-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby-package/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for babel-preset-gatsby-package", - "groupSlug": "babel-preset-gatsby-package-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby-package/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for babel-preset-gatsby-package", - "groupSlug": "babel-preset-gatsby-package-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby-package/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for babel-preset-gatsby-package", - "groupSlug": "babel-preset-gatsby-package-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby-package/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for babel-preset-gatsby-package", - "groupSlug": "babel-preset-gatsby-package-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby-package/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for babel-preset-gatsby-package", - "groupSlug": "babel-preset-gatsby-package-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby-package{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for babel-preset-gatsby", - "groupSlug": "babel-preset-gatsby-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for babel-preset-gatsby", - "groupSlug": "babel-preset-gatsby-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for babel-preset-gatsby", - "groupSlug": "babel-preset-gatsby-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for babel-preset-gatsby", - "groupSlug": "babel-preset-gatsby-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for babel-preset-gatsby", - "groupSlug": "babel-preset-gatsby-prod-minor", - "matchPackageNames": [ - "babel-plugin-transform-react-remove-prop-types" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/babel-preset-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for babel-preset-gatsby", - "groupSlug": "babel-preset-gatsby-prod-major", - "matchPackageNames": [ - "babel-plugin-transform-react-remove-prop-types" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for babel-preset-gatsby{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/create-gatsby/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for create-gatsby", - "groupSlug": "create-gatsby-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/create-gatsby/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for create-gatsby", - "groupSlug": "create-gatsby-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/create-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for create-gatsby", - "groupSlug": "create-gatsby-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/create-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for create-gatsby", - "groupSlug": "create-gatsby-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/create-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for create-gatsby", - "groupSlug": "create-gatsby-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/create-gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for create-gatsby", - "groupSlug": "create-gatsby-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for create-gatsby{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-cli/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-cli", - "groupSlug": "gatsby-cli-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cli/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-cli", - "groupSlug": "gatsby-cli-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-cli", - "groupSlug": "gatsby-cli-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-cli", - "groupSlug": "gatsby-cli-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-cli", - "groupSlug": "gatsby-cli-prod-minor", - "matchPackageNames": [ - "@jridgewell/trace-mapping", - "is-valid-path", - "opentracing", - "stack-trace" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-cli", - "groupSlug": "gatsby-cli-prod-major", - "matchPackageNames": [ - "@jridgewell/trace-mapping", - "is-valid-path", - "opentracing", - "stack-trace" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cli{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-codemods/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-codemods", - "groupSlug": "gatsby-codemods-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-codemods/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-codemods", - "groupSlug": "gatsby-codemods-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-codemods/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-codemods", - "groupSlug": "gatsby-codemods-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-codemods/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-codemods", - "groupSlug": "gatsby-codemods-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-codemods/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-codemods", - "groupSlug": "gatsby-codemods-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-codemods/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-codemods", - "groupSlug": "gatsby-codemods-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-codemods{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-core-utils/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-core-utils", - "groupSlug": "gatsby-core-utils-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-core-utils/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-core-utils", - "groupSlug": "gatsby-core-utils-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-core-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-core-utils", - "groupSlug": "gatsby-core-utils-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-core-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-core-utils", - "groupSlug": "gatsby-core-utils-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-core-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-core-utils", - "groupSlug": "gatsby-core-utils-prod-minor", - "matchPackageNames": [ - "tmp" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-core-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-core-utils", - "groupSlug": "gatsby-core-utils-prod-major", - "matchPackageNames": [ - "tmp" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-core-utils{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-cypress/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-cypress", - "groupSlug": "gatsby-cypress-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cypress/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-cypress", - "groupSlug": "gatsby-cypress-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cypress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-cypress", - "groupSlug": "gatsby-cypress-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cypress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-cypress", - "groupSlug": "gatsby-cypress-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-cypress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-cypress", - "groupSlug": "gatsby-cypress-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-cypress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-cypress", - "groupSlug": "gatsby-cypress-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-cypress{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-design-tokens/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-design-tokens", - "groupSlug": "gatsby-design-tokens-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-design-tokens/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-design-tokens", - "groupSlug": "gatsby-design-tokens-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-design-tokens/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-design-tokens", - "groupSlug": "gatsby-design-tokens-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-design-tokens/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-design-tokens", - "groupSlug": "gatsby-design-tokens-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-design-tokens/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-design-tokens", - "groupSlug": "gatsby-design-tokens-prod-minor", - "matchPackageNames": [ - "hex2rgba" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-design-tokens/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-design-tokens", - "groupSlug": "gatsby-design-tokens-prod-major", - "matchPackageNames": [ - "hex2rgba" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-design-tokens{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-dev-cli/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-dev-cli", - "groupSlug": "gatsby-dev-cli-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-dev-cli/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-dev-cli", - "groupSlug": "gatsby-dev-cli-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-dev-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-dev-cli", - "groupSlug": "gatsby-dev-cli-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-dev-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-dev-cli", - "groupSlug": "gatsby-dev-cli-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-dev-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-dev-cli", - "groupSlug": "gatsby-dev-cli-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-dev-cli/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-dev-cli", - "groupSlug": "gatsby-dev-cli-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-dev-cli{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-graphiql-explorer/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-graphiql-explorer", - "groupSlug": "gatsby-graphiql-explorer-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-graphiql-explorer/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-graphiql-explorer", - "groupSlug": "gatsby-graphiql-explorer-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-graphiql-explorer/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-graphiql-explorer", - "groupSlug": "gatsby-graphiql-explorer-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-graphiql-explorer/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-graphiql-explorer", - "groupSlug": "gatsby-graphiql-explorer-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-graphiql-explorer/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-graphiql-explorer", - "groupSlug": "gatsby-graphiql-explorer-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-graphiql-explorer/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-graphiql-explorer", - "groupSlug": "gatsby-graphiql-explorer-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-graphiql-explorer{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-legacy-polyfills/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-legacy-polyfills", - "groupSlug": "gatsby-legacy-polyfills-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-legacy-polyfills/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-legacy-polyfills", - "groupSlug": "gatsby-legacy-polyfills-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-legacy-polyfills/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-legacy-polyfills", - "groupSlug": "gatsby-legacy-polyfills-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-legacy-polyfills/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-legacy-polyfills", - "groupSlug": "gatsby-legacy-polyfills-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-legacy-polyfills/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-legacy-polyfills", - "groupSlug": "gatsby-legacy-polyfills-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-legacy-polyfills/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-legacy-polyfills", - "groupSlug": "gatsby-legacy-polyfills-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-legacy-polyfills{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-link/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-link", - "groupSlug": "gatsby-link-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-link/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-link", - "groupSlug": "gatsby-link-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-link/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-link", - "groupSlug": "gatsby-link-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-link/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-link", - "groupSlug": "gatsby-link-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-link/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-link", - "groupSlug": "gatsby-link-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-link/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-link", - "groupSlug": "gatsby-link-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-link{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-page-utils/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-page-utils", - "groupSlug": "gatsby-page-utils-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-page-utils/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-page-utils", - "groupSlug": "gatsby-page-utils-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-page-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-page-utils", - "groupSlug": "gatsby-page-utils-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-page-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-page-utils", - "groupSlug": "gatsby-page-utils-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-page-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-page-utils", - "groupSlug": "gatsby-page-utils-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-page-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-page-utils", - "groupSlug": "gatsby-page-utils-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-page-utils{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-parcel-config/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-parcel-config", - "groupSlug": "gatsby-parcel-config-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-config/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-parcel-config", - "groupSlug": "gatsby-parcel-config-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-config/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-parcel-config", - "groupSlug": "gatsby-parcel-config-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-config/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-parcel-config", - "groupSlug": "gatsby-parcel-config-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-parcel-config/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-parcel-config", - "groupSlug": "gatsby-parcel-config-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-config/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-parcel-config", - "groupSlug": "gatsby-parcel-config-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-config{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-parcel-namer-relative-to-cwd/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-parcel-namer-relative-to-cwd", - "groupSlug": "gatsby-parcel-namer-relative-to-cwd-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-namer-relative-to-cwd/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-parcel-namer-relative-to-cwd", - "groupSlug": "gatsby-parcel-namer-relative-to-cwd-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-namer-relative-to-cwd/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-parcel-namer-relative-to-cwd", - "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-namer-relative-to-cwd/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-parcel-namer-relative-to-cwd", - "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-parcel-namer-relative-to-cwd/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-parcel-namer-relative-to-cwd", - "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-parcel-namer-relative-to-cwd/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-parcel-namer-relative-to-cwd", - "groupSlug": "gatsby-parcel-namer-relative-to-cwd-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-parcel-namer-relative-to-cwd{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-benchmark-reporting/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-benchmark-reporting", - "groupSlug": "gatsby-plugin-benchmark-reporting-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-benchmark-reporting{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-canonical-urls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-canonical-urls", - "groupSlug": "gatsby-plugin-canonical-urls-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-canonical-urls{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-catch-links/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-catch-links", - "groupSlug": "gatsby-plugin-catch-links-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-catch-links{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-minor", - "matchPackageNames": [ - "coffee-loader" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-coffeescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-coffeescript", - "groupSlug": "gatsby-plugin-coffeescript-prod-major", - "matchPackageNames": [ - "coffee-loader" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-coffeescript{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-cxs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-cxs", - "groupSlug": "gatsby-plugin-cxs-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-cxs{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-emotion/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-emotion", - "groupSlug": "gatsby-plugin-emotion-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-emotion{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-facebook-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-facebook-analytics", - "groupSlug": "gatsby-plugin-facebook-analytics-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-facebook-analytics{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-feed/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-feed", - "groupSlug": "gatsby-plugin-feed-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-feed{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-flow/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-flow", - "groupSlug": "gatsby-plugin-flow-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-flow{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-fullstory/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-fullstory", - "groupSlug": "gatsby-plugin-fullstory-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-fullstory{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-minor", - "matchPackageNames": [ - "kebab-hash" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-gatsby-cloud/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-gatsby-cloud", - "groupSlug": "gatsby-plugin-gatsby-cloud-prod-major", - "matchPackageNames": [ - "kebab-hash" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-gatsby-cloud{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-analytics/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-google-analytics", - "groupSlug": "gatsby-plugin-google-analytics-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-analytics{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-gtag/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-google-gtag", - "groupSlug": "gatsby-plugin-google-gtag-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-gtag{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-google-tagmanager/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-google-tagmanager", - "groupSlug": "gatsby-plugin-google-tagmanager-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-google-tagmanager{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-image/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-image/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-image/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-image/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-image/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-image/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-image", - "groupSlug": "gatsby-plugin-image-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-image{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-jss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-jss", - "groupSlug": "gatsby-plugin-jss-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-jss{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-layout/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-layout", - "groupSlug": "gatsby-plugin-layout-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-layout{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-less/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-less/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-less/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-less/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-less/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-less/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-less", - "groupSlug": "gatsby-plugin-less-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-less{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-minor", - "matchPackageNames": [ - "lodash-webpack-plugin" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-lodash/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-lodash", - "groupSlug": "gatsby-plugin-lodash-prod-major", - "matchPackageNames": [ - "lodash-webpack-plugin" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-lodash{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-minor", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-manifest/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-manifest", - "groupSlug": "gatsby-plugin-manifest-prod-major", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-manifest{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-mdx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-mdx", - "groupSlug": "gatsby-plugin-mdx-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-mdx{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-netlify-cms/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-netlify-cms", - "groupSlug": "gatsby-plugin-netlify-cms-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-netlify-cms{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-no-sourcemaps/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-no-sourcemaps", - "groupSlug": "gatsby-plugin-no-sourcemaps-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-no-sourcemaps{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-nprogress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-nprogress", - "groupSlug": "gatsby-plugin-nprogress-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-nprogress{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-offline/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-offline", - "groupSlug": "gatsby-plugin-offline-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-offline{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-page-creator/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-page-creator", - "groupSlug": "gatsby-plugin-page-creator-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-page-creator{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-postcss/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-postcss", - "groupSlug": "gatsby-plugin-postcss-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-postcss{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-minor", - "matchPackageNames": [ - "@prefresh/babel-plugin" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preact/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-preact", - "groupSlug": "gatsby-plugin-preact-prod-major", - "matchPackageNames": [ - "@prefresh/babel-plugin" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preact{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-preload-fonts/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-preload-fonts", - "groupSlug": "gatsby-plugin-preload-fonts-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-preload-fonts{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-css-modules/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-react-css-modules", - "groupSlug": "gatsby-plugin-react-css-modules-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-css-modules{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-react-helmet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-react-helmet", - "groupSlug": "gatsby-plugin-react-helmet-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-react-helmet{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sass/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-sass", - "groupSlug": "gatsby-plugin-sass-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sass{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-schema-snapshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-schema-snapshot", - "groupSlug": "gatsby-plugin-schema-snapshot-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-schema-snapshot{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-minor", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-sharp", - "groupSlug": "gatsby-plugin-sharp-prod-major", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sharp{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-sitemap/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-sitemap", - "groupSlug": "gatsby-plugin-sitemap-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-sitemap{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-components/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-styled-components", - "groupSlug": "gatsby-plugin-styled-components-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-components{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styled-jsx/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-styled-jsx", - "groupSlug": "gatsby-plugin-styled-jsx-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styled-jsx{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-styletron/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-styletron", - "groupSlug": "gatsby-plugin-styletron-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-styletron{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-minor", - "matchPackageNames": [ - "stylus" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-stylus/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-stylus", - "groupSlug": "gatsby-plugin-stylus-prod-major", - "matchPackageNames": [ - "stylus" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-stylus{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-subfont/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-subfont", - "groupSlug": "gatsby-plugin-subfont-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-subfont{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-twitter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-twitter", - "groupSlug": "gatsby-plugin-twitter-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-twitter{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typescript/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-typescript", - "groupSlug": "gatsby-plugin-typescript-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typescript{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-typography/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-typography", - "groupSlug": "gatsby-plugin-typography-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-typography{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-plugin-utils/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-plugin-utils", - "groupSlug": "gatsby-plugin-utils-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-plugin-utils{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-react-router-scroll/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-react-router-scroll", - "groupSlug": "gatsby-react-router-scroll-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-react-router-scroll{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-autolink-headers/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-autolink-headers", - "groupSlug": "gatsby-remark-autolink-headers-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-autolink-headers{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-code-repls/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-code-repls", - "groupSlug": "gatsby-remark-code-repls-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-code-repls{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-copy-linked-files/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-copy-linked-files", - "groupSlug": "gatsby-remark-copy-linked-files-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-copy-linked-files{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-custom-blocks/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-custom-blocks", - "groupSlug": "gatsby-remark-custom-blocks-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-custom-blocks{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-embed-snippet/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-embed-snippet", - "groupSlug": "gatsby-remark-embed-snippet-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-embed-snippet{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-graphviz/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-graphviz", - "groupSlug": "gatsby-remark-graphviz-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-graphviz{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-minor", - "matchPackageNames": [ - "axios", - "sharp" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-images-contentful", - "groupSlug": "gatsby-remark-images-contentful-prod-major", - "matchPackageNames": [ - "axios", - "sharp" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images-contentful{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-images/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-images/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-images/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-images", - "groupSlug": "gatsby-remark-images-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-images{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-katex/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-katex/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-katex/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-katex/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-katex/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-katex/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-katex", - "groupSlug": "gatsby-remark-katex-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-katex{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-prismjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-prismjs", - "groupSlug": "gatsby-remark-prismjs-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-prismjs{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-responsive-iframe/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-responsive-iframe", - "groupSlug": "gatsby-remark-responsive-iframe-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-responsive-iframe{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-remark-smartypants/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-remark-smartypants", - "groupSlug": "gatsby-remark-smartypants-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-remark-smartypants{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-script/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-script", - "groupSlug": "gatsby-script-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-script/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-script", - "groupSlug": "gatsby-script-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-script/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-script", - "groupSlug": "gatsby-script-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-script/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-script", - "groupSlug": "gatsby-script-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-script/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-script", - "groupSlug": "gatsby-script-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-script/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-script", - "groupSlug": "gatsby-script-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-script{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-sharp/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-sharp", - "groupSlug": "gatsby-sharp-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-sharp/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-sharp", - "groupSlug": "gatsby-sharp-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-sharp", - "groupSlug": "gatsby-sharp-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-sharp", - "groupSlug": "gatsby-sharp-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-sharp", - "groupSlug": "gatsby-sharp-prod-minor", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-sharp", - "groupSlug": "gatsby-sharp-prod-major", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-sharp{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-contentful/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-contentful", - "groupSlug": "gatsby-source-contentful-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-contentful/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-contentful", - "groupSlug": "gatsby-source-contentful-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-contentful", - "groupSlug": "gatsby-source-contentful-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-contentful", - "groupSlug": "gatsby-source-contentful-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-contentful", - "groupSlug": "gatsby-source-contentful-prod-minor", - "matchPackageNames": [ - "url" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-contentful/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-contentful", - "groupSlug": "gatsby-source-contentful-prod-major", - "matchPackageNames": [ - "url" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-contentful{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-drupal/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-drupal", - "groupSlug": "gatsby-source-drupal-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-drupal/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-drupal", - "groupSlug": "gatsby-source-drupal-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-drupal/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-drupal", - "groupSlug": "gatsby-source-drupal-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-drupal/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-drupal", - "groupSlug": "gatsby-source-drupal-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-drupal/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-drupal", - "groupSlug": "gatsby-source-drupal-prod-minor", - "matchPackageNames": [ - "opentracing" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-drupal/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-drupal", - "groupSlug": "gatsby-source-drupal-prod-major", - "matchPackageNames": [ - "opentracing" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-drupal{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-faker/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-faker", - "groupSlug": "gatsby-source-faker-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-faker/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-faker", - "groupSlug": "gatsby-source-faker-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-faker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-faker", - "groupSlug": "gatsby-source-faker-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-faker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-faker", - "groupSlug": "gatsby-source-faker-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-faker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-faker", - "groupSlug": "gatsby-source-faker-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-faker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-faker", - "groupSlug": "gatsby-source-faker-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-faker{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-filesystem/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-filesystem", - "groupSlug": "gatsby-source-filesystem-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-filesystem/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-filesystem", - "groupSlug": "gatsby-source-filesystem-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-filesystem/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-filesystem", - "groupSlug": "gatsby-source-filesystem-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-filesystem/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-filesystem", - "groupSlug": "gatsby-source-filesystem-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-filesystem/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-filesystem", - "groupSlug": "gatsby-source-filesystem-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-filesystem/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-filesystem", - "groupSlug": "gatsby-source-filesystem-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-filesystem{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-graphql/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-graphql", - "groupSlug": "gatsby-source-graphql-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-graphql/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-graphql", - "groupSlug": "gatsby-source-graphql-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-graphql/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-graphql", - "groupSlug": "gatsby-source-graphql-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-graphql/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-graphql", - "groupSlug": "gatsby-source-graphql-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-graphql/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-graphql", - "groupSlug": "gatsby-source-graphql-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-graphql/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-graphql", - "groupSlug": "gatsby-source-graphql-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-graphql{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-hacker-news/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-hacker-news", - "groupSlug": "gatsby-source-hacker-news-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-hacker-news/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-hacker-news", - "groupSlug": "gatsby-source-hacker-news-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-hacker-news/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-hacker-news", - "groupSlug": "gatsby-source-hacker-news-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-hacker-news/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-hacker-news", - "groupSlug": "gatsby-source-hacker-news-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-hacker-news/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-hacker-news", - "groupSlug": "gatsby-source-hacker-news-prod-minor", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-hacker-news/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-hacker-news", - "groupSlug": "gatsby-source-hacker-news-prod-major", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-hacker-news{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-lever/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-lever", - "groupSlug": "gatsby-source-lever-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-lever/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-lever", - "groupSlug": "gatsby-source-lever-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-lever/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-lever", - "groupSlug": "gatsby-source-lever-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-lever/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-lever", - "groupSlug": "gatsby-source-lever-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-lever/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-lever", - "groupSlug": "gatsby-source-lever-prod-minor", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-lever/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-lever", - "groupSlug": "gatsby-source-lever-prod-major", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-lever{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-medium/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-medium", - "groupSlug": "gatsby-source-medium-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-medium/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-medium", - "groupSlug": "gatsby-source-medium-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-medium/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-medium", - "groupSlug": "gatsby-source-medium-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-medium/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-medium", - "groupSlug": "gatsby-source-medium-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-medium/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-medium", - "groupSlug": "gatsby-source-medium-prod-minor", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-medium/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-medium", - "groupSlug": "gatsby-source-medium-prod-major", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-medium{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-mongodb/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-mongodb", - "groupSlug": "gatsby-source-mongodb-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-mongodb/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-mongodb", - "groupSlug": "gatsby-source-mongodb-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-mongodb/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-mongodb", - "groupSlug": "gatsby-source-mongodb-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-mongodb/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-mongodb", - "groupSlug": "gatsby-source-mongodb-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-mongodb/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-mongodb", - "groupSlug": "gatsby-source-mongodb-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-mongodb/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-mongodb", - "groupSlug": "gatsby-source-mongodb-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-mongodb{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-npm-package-search/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-npm-package-search", - "groupSlug": "gatsby-source-npm-package-search-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-npm-package-search/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-npm-package-search", - "groupSlug": "gatsby-source-npm-package-search-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-npm-package-search/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-npm-package-search", - "groupSlug": "gatsby-source-npm-package-search-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-npm-package-search/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-npm-package-search", - "groupSlug": "gatsby-source-npm-package-search-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-npm-package-search/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-npm-package-search", - "groupSlug": "gatsby-source-npm-package-search-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-npm-package-search/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-npm-package-search", - "groupSlug": "gatsby-source-npm-package-search-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-npm-package-search{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-shopify/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-shopify", - "groupSlug": "gatsby-source-shopify-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-shopify/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-shopify", - "groupSlug": "gatsby-source-shopify-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-shopify/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-shopify", - "groupSlug": "gatsby-source-shopify-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-shopify/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-shopify", - "groupSlug": "gatsby-source-shopify-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-shopify/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-shopify", - "groupSlug": "gatsby-source-shopify-prod-minor", - "matchPackageNames": [ - "sharp", - "shift-left" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-shopify/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-shopify", - "groupSlug": "gatsby-source-shopify-prod-major", - "matchPackageNames": [ - "sharp", - "shift-left" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-shopify{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-wikipedia/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-wikipedia", - "groupSlug": "gatsby-source-wikipedia-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wikipedia/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-wikipedia", - "groupSlug": "gatsby-source-wikipedia-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wikipedia/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-wikipedia", - "groupSlug": "gatsby-source-wikipedia-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wikipedia/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-wikipedia", - "groupSlug": "gatsby-source-wikipedia-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-wikipedia/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-wikipedia", - "groupSlug": "gatsby-source-wikipedia-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wikipedia/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-wikipedia", - "groupSlug": "gatsby-source-wikipedia-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wikipedia{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-wordpress/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-source-wordpress", - "groupSlug": "gatsby-source-wordpress-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wordpress/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-source-wordpress", - "groupSlug": "gatsby-source-wordpress-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wordpress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-source-wordpress", - "groupSlug": "gatsby-source-wordpress-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wordpress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-source-wordpress", - "groupSlug": "gatsby-source-wordpress-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-source-wordpress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-source-wordpress", - "groupSlug": "gatsby-source-wordpress-prod-minor", - "matchPackageNames": [ - "axios", - "cache-manager-fs-hash", - "replaceall", - "sharp" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-source-wordpress/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-source-wordpress", - "groupSlug": "gatsby-source-wordpress-prod-major", - "matchPackageNames": [ - "axios", - "cache-manager-fs-hash", - "replaceall", - "sharp" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-source-wordpress{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-telemetry/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-telemetry", - "groupSlug": "gatsby-telemetry-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-telemetry/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-telemetry", - "groupSlug": "gatsby-telemetry-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-telemetry/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-telemetry", - "groupSlug": "gatsby-telemetry-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-telemetry/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-telemetry", - "groupSlug": "gatsby-telemetry-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-telemetry/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-telemetry", - "groupSlug": "gatsby-telemetry-prod-minor", - "matchPackageNames": [ - "@turist/time" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-telemetry/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-telemetry", - "groupSlug": "gatsby-telemetry-prod-major", - "matchPackageNames": [ - "@turist/time" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-telemetry{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-asciidoc/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-asciidoc", - "groupSlug": "gatsby-transformer-asciidoc-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-asciidoc/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-asciidoc", - "groupSlug": "gatsby-transformer-asciidoc-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-asciidoc/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-asciidoc", - "groupSlug": "gatsby-transformer-asciidoc-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-asciidoc/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-asciidoc", - "groupSlug": "gatsby-transformer-asciidoc-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-asciidoc/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-asciidoc", - "groupSlug": "gatsby-transformer-asciidoc-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-asciidoc/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-asciidoc", - "groupSlug": "gatsby-transformer-asciidoc-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-asciidoc{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-csv/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-csv", - "groupSlug": "gatsby-transformer-csv-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-csv/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-csv", - "groupSlug": "gatsby-transformer-csv-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-csv/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-csv", - "groupSlug": "gatsby-transformer-csv-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-csv/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-csv", - "groupSlug": "gatsby-transformer-csv-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-csv/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-csv", - "groupSlug": "gatsby-transformer-csv-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-csv/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-csv", - "groupSlug": "gatsby-transformer-csv-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-csv{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-documentationjs/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-documentationjs", - "groupSlug": "gatsby-transformer-documentationjs-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-documentationjs/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-documentationjs", - "groupSlug": "gatsby-transformer-documentationjs-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-documentationjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-documentationjs", - "groupSlug": "gatsby-transformer-documentationjs-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-documentationjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-documentationjs", - "groupSlug": "gatsby-transformer-documentationjs-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-documentationjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-documentationjs", - "groupSlug": "gatsby-transformer-documentationjs-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-documentationjs/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-documentationjs", - "groupSlug": "gatsby-transformer-documentationjs-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-documentationjs{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-excel/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-excel", - "groupSlug": "gatsby-transformer-excel-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-excel/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-excel", - "groupSlug": "gatsby-transformer-excel-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-excel/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-excel", - "groupSlug": "gatsby-transformer-excel-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-excel/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-excel", - "groupSlug": "gatsby-transformer-excel-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-excel/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-excel", - "groupSlug": "gatsby-transformer-excel-prod-minor", - "matchPackageNames": [ - "xlsx" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-excel/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-excel", - "groupSlug": "gatsby-transformer-excel-prod-major", - "matchPackageNames": [ - "xlsx" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-excel{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-hjson/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-hjson", - "groupSlug": "gatsby-transformer-hjson-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-hjson/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-hjson", - "groupSlug": "gatsby-transformer-hjson-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-hjson/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-hjson", - "groupSlug": "gatsby-transformer-hjson-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-hjson/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-hjson", - "groupSlug": "gatsby-transformer-hjson-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-hjson/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-hjson", - "groupSlug": "gatsby-transformer-hjson-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-hjson/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-hjson", - "groupSlug": "gatsby-transformer-hjson-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-hjson{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-frontmatter/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-javascript-frontmatter", - "groupSlug": "gatsby-transformer-javascript-frontmatter-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-frontmatter/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-javascript-frontmatter", - "groupSlug": "gatsby-transformer-javascript-frontmatter-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-frontmatter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-javascript-frontmatter", - "groupSlug": "gatsby-transformer-javascript-frontmatter-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-frontmatter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-javascript-frontmatter", - "groupSlug": "gatsby-transformer-javascript-frontmatter-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-frontmatter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-javascript-frontmatter", - "groupSlug": "gatsby-transformer-javascript-frontmatter-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-frontmatter/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-javascript-frontmatter", - "groupSlug": "gatsby-transformer-javascript-frontmatter-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-frontmatter{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-static-exports/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-javascript-static-exports", - "groupSlug": "gatsby-transformer-javascript-static-exports-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-static-exports/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-javascript-static-exports", - "groupSlug": "gatsby-transformer-javascript-static-exports-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-static-exports/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-javascript-static-exports", - "groupSlug": "gatsby-transformer-javascript-static-exports-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-static-exports/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-javascript-static-exports", - "groupSlug": "gatsby-transformer-javascript-static-exports-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-static-exports/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-javascript-static-exports", - "groupSlug": "gatsby-transformer-javascript-static-exports-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-javascript-static-exports/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-javascript-static-exports", - "groupSlug": "gatsby-transformer-javascript-static-exports-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-javascript-static-exports{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-json/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-json", - "groupSlug": "gatsby-transformer-json-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-json/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-json", - "groupSlug": "gatsby-transformer-json-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-json/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-json", - "groupSlug": "gatsby-transformer-json-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-json/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-json", - "groupSlug": "gatsby-transformer-json-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-json/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-json", - "groupSlug": "gatsby-transformer-json-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-json/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-json", - "groupSlug": "gatsby-transformer-json-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-json{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-pdf/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-pdf", - "groupSlug": "gatsby-transformer-pdf-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-pdf/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-pdf", - "groupSlug": "gatsby-transformer-pdf-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-pdf/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-pdf", - "groupSlug": "gatsby-transformer-pdf-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-pdf/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-pdf", - "groupSlug": "gatsby-transformer-pdf-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-pdf/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-pdf", - "groupSlug": "gatsby-transformer-pdf-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-pdf/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-pdf", - "groupSlug": "gatsby-transformer-pdf-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-pdf{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-react-docgen/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-react-docgen", - "groupSlug": "gatsby-transformer-react-docgen-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-react-docgen/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-react-docgen", - "groupSlug": "gatsby-transformer-react-docgen-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-react-docgen/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-react-docgen", - "groupSlug": "gatsby-transformer-react-docgen-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-react-docgen/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-react-docgen", - "groupSlug": "gatsby-transformer-react-docgen-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-react-docgen/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-react-docgen", - "groupSlug": "gatsby-transformer-react-docgen-prod-minor", - "matchPackageNames": [ - "ast-types" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-react-docgen/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-react-docgen", - "groupSlug": "gatsby-transformer-react-docgen-prod-major", - "matchPackageNames": [ - "ast-types" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-react-docgen{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-remark/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-remark", - "groupSlug": "gatsby-transformer-remark-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-remark/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-remark", - "groupSlug": "gatsby-transformer-remark-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-remark/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-remark", - "groupSlug": "gatsby-transformer-remark-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-remark/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-remark", - "groupSlug": "gatsby-transformer-remark-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-remark/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-remark", - "groupSlug": "gatsby-transformer-remark-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-remark/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-remark", - "groupSlug": "gatsby-transformer-remark-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-remark{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-screenshot/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-screenshot", - "groupSlug": "gatsby-transformer-screenshot-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-screenshot/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-screenshot", - "groupSlug": "gatsby-transformer-screenshot-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-screenshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-screenshot", - "groupSlug": "gatsby-transformer-screenshot-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-screenshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-screenshot", - "groupSlug": "gatsby-transformer-screenshot-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-screenshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-screenshot", - "groupSlug": "gatsby-transformer-screenshot-prod-minor", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-screenshot/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-screenshot", - "groupSlug": "gatsby-transformer-screenshot-prod-major", - "matchPackageNames": [ - "axios" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-screenshot{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sharp/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-sharp", - "groupSlug": "gatsby-transformer-sharp-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sharp/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-sharp", - "groupSlug": "gatsby-transformer-sharp-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-sharp", - "groupSlug": "gatsby-transformer-sharp-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-sharp", - "groupSlug": "gatsby-transformer-sharp-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-sharp", - "groupSlug": "gatsby-transformer-sharp-prod-minor", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sharp/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-sharp", - "groupSlug": "gatsby-transformer-sharp-prod-major", - "matchPackageNames": [ - "sharp" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sharp{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sqip/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-sqip", - "groupSlug": "gatsby-transformer-sqip-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sqip/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-sqip", - "groupSlug": "gatsby-transformer-sqip-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sqip/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-sqip", - "groupSlug": "gatsby-transformer-sqip-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sqip/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-sqip", - "groupSlug": "gatsby-transformer-sqip-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sqip/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-sqip", - "groupSlug": "gatsby-transformer-sqip-prod-minor", - "matchPackageNames": [ - "sqip" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-sqip/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-sqip", - "groupSlug": "gatsby-transformer-sqip-prod-major", - "matchPackageNames": [ - "sqip" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-sqip{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-toml/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-toml", - "groupSlug": "gatsby-transformer-toml-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-toml/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-toml", - "groupSlug": "gatsby-transformer-toml-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-toml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-toml", - "groupSlug": "gatsby-transformer-toml-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-toml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-toml", - "groupSlug": "gatsby-transformer-toml-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-toml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-toml", - "groupSlug": "gatsby-transformer-toml-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-toml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-toml", - "groupSlug": "gatsby-transformer-toml-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-toml{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-xml/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-xml", - "groupSlug": "gatsby-transformer-xml-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-xml/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-xml", - "groupSlug": "gatsby-transformer-xml-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-xml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-xml", - "groupSlug": "gatsby-transformer-xml-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-xml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-xml", - "groupSlug": "gatsby-transformer-xml-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-xml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-xml", - "groupSlug": "gatsby-transformer-xml-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-xml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-xml", - "groupSlug": "gatsby-transformer-xml-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-xml{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-yaml/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-transformer-yaml", - "groupSlug": "gatsby-transformer-yaml-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-yaml/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-transformer-yaml", - "groupSlug": "gatsby-transformer-yaml-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-yaml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-yaml", - "groupSlug": "gatsby-transformer-yaml-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-yaml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-transformer-yaml", - "groupSlug": "gatsby-transformer-yaml-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-transformer-yaml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-transformer-yaml", - "groupSlug": "gatsby-transformer-yaml-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-transformer-yaml/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-transformer-yaml", - "groupSlug": "gatsby-transformer-yaml-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-transformer-yaml{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-worker/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby-worker", - "groupSlug": "gatsby-worker-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-worker/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby-worker", - "groupSlug": "gatsby-worker-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-worker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby-worker", - "groupSlug": "gatsby-worker-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-worker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby-worker", - "groupSlug": "gatsby-worker-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby-worker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby-worker", - "groupSlug": "gatsby-worker-prod-minor", - "matchPackageNames": [], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby-worker/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby-worker", - "groupSlug": "gatsby-worker-prod-major", - "matchPackageNames": [], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby-worker{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "[DEV] minor and patch dependencies for gatsby", - "groupSlug": "gatsby-dev-minor", - "automerge": true, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby/package.json" - ], - "matchDepTypes": [ - "devDependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "[DEV] major dependencies for gatsby", - "groupSlug": "gatsby-dev-major", - "automerge": true, - "dependencyDashboardApproval": false, - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "patch", - "minor" - ], - "groupName": "minor and patch dependencies for gatsby", - "groupSlug": "gatsby-prod-minor", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "matchUpdateTypes": [ - "major" - ], - "groupName": "major dependencies for gatsby", - "groupSlug": "gatsby-prod-major", - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}", - "dependencyDashboardApproval": true - }, - { - "matchPaths": [ - "packages/gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "minor and patch dependencies for gatsby", - "groupSlug": "gatsby-prod-minor", - "matchPackageNames": [ - "@builder.io/partytown", - "@jridgewell/trace-mapping", - "@pmmmwh/react-refresh-webpack-plugin", - "axios", - "cookie", - "json-loader", - "memoizee", - "opentracing", - "react-refresh", - "stack-trace", - "tmp", - "webpack-virtual-modules", - "yaml-loader" - ], - "matchUpdateTypes": [ - "patch" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}" - }, - { - "matchPaths": [ - "packages/gatsby/package.json" - ], - "matchDepTypes": [ - "dependencies" - ], - "groupName": "major dependencies for gatsby", - "groupSlug": "gatsby-prod-major", - "matchPackageNames": [ - "@builder.io/partytown", - "@jridgewell/trace-mapping", - "@pmmmwh/react-refresh-webpack-plugin", - "axios", - "cookie", - "json-loader", - "memoizee", - "opentracing", - "react-refresh", - "stack-trace", - "tmp", - "webpack-virtual-modules", - "yaml-loader" - ], - "matchUpdateTypes": [ - "major", - "minor" - ], - "excludePackageNames": [ - "eslint", - "prettier", - "cross-env", - "execa", - "mini-css-extract-plugin", - "sharp", - "typescript", - "cypress", - "cypress-image-snapshot", - "chalk", - "fs-extra", - "@types/fs-extra", - "cheerio", - "semver", - "@types/semver", - "core-js", - "core-js-compat", - "chokidar" - ], - "excludePackagePatterns": [ - "^@babel", - "^eslint-", - "^@typescript-eslint/", - "^@testing-library/", - "^@parcel/", - "lmdb" - ], - "commitMessageSuffix": "{{#unless groupName}} for gatsby{{/unless}}", - "dependencyDashboardApproval": true + "matchDepTypes": ["dependencies"], + "matchUpdateTypes": ["security"], + "prPriority": 100 } ], - "force": { - "constraints": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - } + "postUpdateOptions": ["yarnDedupeHighest"], + "vulnerabilityAlerts": { + "enabled": true } } diff --git a/scripts/renovate-config-generator.js b/scripts/renovate-config-generator.js deleted file mode 100644 index 46f44c5822394..0000000000000 --- a/scripts/renovate-config-generator.js +++ /dev/null @@ -1,399 +0,0 @@ -const path = require(`path`) -const glob = require(`glob`) -const fs = require(`fs-extra`) - -const ROOT_DIR = path.join(__dirname, `..`) -const packageRules = new Map() - -const globalPackageRules = [ - // bundle well known monorepos - { - groupName: `babel monorepo`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchSourceUrlPrefixes: [`https://github.com/babel/babel`], - }, - { - groupName: `lodash monorepo`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchSourceUrlPrefixes: [`https://github.com/lodash`], - }, - { - groupName: `gatsby monorepo`, - groupSlug: `gatsby-monorepo`, - matchPaths: [`+(package.json)`], - dependencyDashboardApproval: false, - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - commitMessageTopic: `dependencies for Gatsby monorepo`, - excludePackagePatterns: [`^@babel`], - }, - - // group eslint & prettier - { - groupName: `formatting & linting`, - commitMessageTopic: `Formatting & linting`, - matchPaths: [`+(package.json)`], - matchPackageNames: [`eslint`, `prettier`], - matchPackagePatterns: [`^eslint-`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - - // some widely used packages - { - groupName: `cross-env`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`cross-env`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `execa`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`execa`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `mini-css-extract-plugin`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`mini-css-extract-plugin`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - }, - { - groupName: `sharp`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`sharp`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - }, - { - groupName: `typescript`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`typescript`], - matchPackagePatterns: [`^@typescript-eslint/`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `cypress`, - matchPaths: [`e2e-tests/**/package.json`, `examples/**/package.json`], - matchPackageNames: [`cypress`, `cypress-image-snapshot`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `chalk`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`chalk`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `fs-extra`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`fs-extra`, `@types/fs-extra`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `testing library`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackagePatterns: [`^@testing-library/`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `cheerio`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`cheerio`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `semver`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`semver`, `@types/semver`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `core-js`, - matchPaths: [ - `+(package.json)`, - `packages/!(gatsby-legacy-polyfills)/**/package.json`, - ], - matchPackageNames: [`core-js`, `core-js-compat`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `chokidar`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackageNames: [`chokidar`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `Parcel`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackagePatterns: [`^@parcel/`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, - { - groupName: `lmdb`, - matchPaths: [`+(package.json)`, `packages/**/package.json`], - matchPackagePatterns: [`lmdb`], - matchUpdateTypes: [`major`, `minor`, `patch`], - matchDepTypes: [`dependencies`, `devDependencies`], - dependencyDashboardApproval: false, - }, -] - -// there is no excludeMatchSourceUrlPrefixes option so we force babel to be disabled -const globalExcludePackages = [] -const globalExcludePackagePatterns = [`^@babel`] -globalPackageRules.forEach(group => { - if (group.matchPackagePatterns) { - globalExcludePackagePatterns.push(...group.matchPackagePatterns) - } - if (group.matchPackageNames) { - globalExcludePackages.push(...group.matchPackageNames) - } -}) - -// our default rules -const defaultPackageRules = [ - // disable engine upgrades & types/node - { - matchDepTypes: [`engines`, `@types/node`], - enabled: false, - }, - // host-error on renovate :shrug: - // { - // matchPackageNames: [`gatsby-interface`], - // // update internal packages immediately after publish instead of waiting 3 days - // stabilityDays: 0, - // }, - - // update our examples and starters automatically - { - groupName: `starters and examples`, - commitMessageTopic: `starters and examples`, - groupSlug: `starters-examples-minor`, - matchPaths: [`starters/**`, `examples/**`], - schedule: `before 7am on Monday`, - matchUpdateTypes: [`patch`, `minor`], - }, - { - extends: [`monorepo:gatsby`], - commitMessageTopic: `starters and examples Gatsby packages`, - groupName: `starters and examples - Gatsby`, - groupSlug: `starters-examples-gatsby-minor`, - matchPaths: [`starters/**`, `examples/**`], - automerge: true, - stabilityDays: 0, - prPriority: 50, - schedule: `at any time`, - matchUpdateTypes: [`patch`, `minor`], - }, - { - groupName: `starters and examples`, - commitMessageTopic: `starters and examples`, - matchPaths: [`starters/**`, `examples/**`], - schedule: `before 7am on Monday`, - matchUpdateTypes: [`major`], - groupSlug: `starters-examples-major`, - dependencyDashboardApproval: false, - }, - { - groupName: `E2E tests`, - commitMessageTopic: `e2e-tests`, - matchPaths: [`e2e-tests/**`], - schedule: `before 7am on Monday`, - matchUpdateTypes: [`major`], - groupSlug: `e2e-tests-major`, - dependencyDashboardApproval: false, - }, - { - extends: [`monorepo:gatsby`], - commitMessageTopic: `starters and examples Gatsby packages`, - groupName: `starters and examples - Gatsby`, - matchPaths: [`starters/**`, `examples/**`], - stabilityDays: 0, - prPriority: 50, - schedule: `at any time`, - matchUpdateTypes: [`major`], - groupSlug: `starters-examples-gatsby-major`, - dependencyDashboardApproval: false, - }, - - ...globalPackageRules, -] -const monorepoPackages = glob - .sync(`packages/*/package.json`) - .map(file => file.match(/packages\/([^/]+)/)[1]) - -// generate package specific groups -monorepoPackages.forEach(pkg => { - const preFirstMajorPackages = [] - try { - const pkgJson = fs.readJSONSync( - path.join(ROOT_DIR, `packages`, pkg, `package.json`) - ) - - for (const dep in pkgJson.dependencies) { - if ( - !monorepoPackages.includes(dep) && - pkgJson.dependencies[dep] && - (pkgJson.dependencies[dep].startsWith(`~0.`) || - pkgJson.dependencies[dep].startsWith(`^0.`)) - ) { - preFirstMajorPackages.push(dep) - } - } - } catch (err) { - // ignore - } - - const packageRule = [ - { - matchPaths: [`packages/${pkg}/package.json`], - matchDepTypes: [`devDependencies`], - matchUpdateTypes: [`patch`, `minor`], - groupName: `[DEV] minor and patch dependencies for ${pkg}`, - groupSlug: `${pkg}-dev-minor`, - automerge: true, - excludePackageNames: globalExcludePackages, - excludePackagePatterns: globalExcludePackagePatterns, - // When only one package get updated the groupName is not used and you don't know which plugin in the monorepo gets updated - // ex: chore(deps): update dependency katex to ^0.13.11 - commitMessageSuffix: `{{#unless groupName}} for ${pkg}{{/unless}}`, - }, - { - matchPaths: [`packages/${pkg}/package.json`], - matchDepTypes: [`devDependencies`], - matchUpdateTypes: [`major`], - groupName: `[DEV] major dependencies for ${pkg}`, - groupSlug: `${pkg}-dev-major`, - automerge: true, - dependencyDashboardApproval: false, - excludePackageNames: globalExcludePackages, - excludePackagePatterns: globalExcludePackagePatterns, - commitMessageSuffix: `{{#unless groupName}} for ${pkg}{{/unless}}`, - }, - { - matchPaths: [`packages/${pkg}/package.json`], - matchDepTypes: [`dependencies`], - matchUpdateTypes: [`patch`, `minor`], - groupName: `minor and patch dependencies for ${pkg}`, - groupSlug: `${pkg}-prod-minor`, - excludePackageNames: globalExcludePackages, - excludePackagePatterns: globalExcludePackagePatterns, - commitMessageSuffix: `{{#unless groupName}} for ${pkg}{{/unless}}`, - }, - { - matchPaths: [`packages/${pkg}/package.json`], - matchDepTypes: [`dependencies`], - matchUpdateTypes: [`major`], - groupName: `major dependencies for ${pkg}`, - groupSlug: `${pkg}-prod-major`, - excludePackageNames: globalExcludePackages, - excludePackagePatterns: globalExcludePackagePatterns, - commitMessageSuffix: `{{#unless groupName}} for ${pkg}{{/unless}}`, - dependencyDashboardApproval: true, - }, - // all deps below <1.0.0 will get special treatment. - { - matchPaths: [`packages/${pkg}/package.json`], - matchDepTypes: [`dependencies`], - groupName: `minor and patch dependencies for ${pkg}`, - groupSlug: `${pkg}-prod-minor`, - matchPackageNames: preFirstMajorPackages, - matchUpdateTypes: [`patch`], - excludePackageNames: globalExcludePackages, - excludePackagePatterns: globalExcludePackagePatterns, - commitMessageSuffix: `{{#unless groupName}} for ${pkg}{{/unless}}`, - }, - { - matchPaths: [`packages/${pkg}/package.json`], - matchDepTypes: [`dependencies`], - groupName: `major dependencies for ${pkg}`, - groupSlug: `${pkg}-prod-major`, - matchPackageNames: preFirstMajorPackages, - matchUpdateTypes: [`major`, `minor`], - excludePackageNames: globalExcludePackages, - excludePackagePatterns: globalExcludePackagePatterns, - commitMessageSuffix: `{{#unless groupName}} for ${pkg}{{/unless}}`, - dependencyDashboardApproval: true, - }, - ] - - packageRules.set(pkg, packageRule) -}) - -const renovateConfig = { - extends: [ - `:separateMajorReleases`, - `:combinePatchMinorReleases`, - `:ignoreUnstable`, - `:prImmediately`, - `:semanticPrefixFixDepsChoreOthers`, - `:automergeDisabled`, - `:disablePeerDependencies`, - `:maintainLockFilesDisabled`, - `:disableRateLimiting`, - `:label(topic: automation)`, - `:ignoreModulesAndTests`, - `:enableVulnerabilityAlerts`, - ], - includePaths: [ - `package.json`, - `packages/**`, - `starters/**`, - `examples/**`, - `e2e-tests/**`, - ], - major: { - dependencyDashboardApproval: true, - }, - dependencyDashboard: true, - ignoreDeps: [`react`, `react-dom`, `uuid`, `gatsby-interface`], - rangeStrategy: `bump`, - bumpVersion: null, - prHourlyLimit: 0, - // Wait for 2 days to update a package so we can check if it's stable - stabilityDays: 2, - postUpdateOptions: [`yarnDedupeHighest`], - timezone: `GMT`, - schedule: [`before 7am on the first day of the month`], - updateNotScheduled: false, - packageRules: defaultPackageRules.concat( - Array.from(packageRules.values()).flat() - ), - force: { - constraints: { - node: `>=18.0.0`, - npm: `>=8.0.0`, - }, - }, -} - -fs.writeJSONSync(path.join(ROOT_DIR, `renovate.json5`), renovateConfig, { - spaces: 2, -}) diff --git a/scripts/site-up-checker/index.js b/scripts/site-up-checker/index.js deleted file mode 100644 index 3da78f95721b1..0000000000000 --- a/scripts/site-up-checker/index.js +++ /dev/null @@ -1,63 +0,0 @@ -const request = require(`request-promise`) -const Webhook = require(`webhook-discord`) -const Discord = require(`discord.js`) -const _ = require(`lodash`) - -const client = new Discord.Client() - -client.login(process.env.CLIENT_LOGIN) - -const usersToAlert = [`103313968377909248`] -const usersDMChannels = [] -client.on(`ready`, () => { - console.log(`client ready`) - client.users - .filter(u => _.includes(usersToAlert, u.id)) - .forEach(userObject => { - console.log(userObject) - userObject.createDM().then(dmChannel => usersDMChannels.push(dmChannel)) - }) -}) - -const webhook = new Webhook(process.env.WEBHOOK_URL) - -const checkWebsite = async site => { - try { - const { statusCode } = await request({ - uri: site, - resolveWithFullResponse: true, - method: `GET`, - }) - if (statusCode === 200) { - console.log(`${new Date().toJSON()}: ${site} is up`) - } - } catch (e) { - console.log(`fail`, e) - - // Alert channel. - webhook.error(`Gatsby bot`, `A Gatsby site is down ${site}`) - - // Alert admins over DM - usersDMChannels.forEach(chan => - chan.send(`A Gatsby website is down! ${site}`) - ) - } -} - -const main = () => { - const websites = [ - `https://www.gatsbyjs.com`, - `https://gatsbygram.gatsbyjs.org`, - `https://using-drupal.gatsbyjs.org`, - ] - - // Run immediately. - websites.forEach(w => checkWebsite(w)) - - // Check each website every 60 seconds. - setInterval(() => { - websites.forEach(w => checkWebsite(w)) - }, 60000) -} - -main() diff --git a/scripts/site-up-checker/package.json b/scripts/site-up-checker/package.json deleted file mode 100644 index 339b620852192..0000000000000 --- a/scripts/site-up-checker/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "site-up-checker", - "version": "1.0.0", - "description": "Checks if our Gatsby example sites are up and pings Discord when one goes down", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "node index" - }, - "author": "Kyle Mathews ", - "license": "MIT", - "dependencies": { - "bluebird": "^3.5.0", - "discord.js": "^11.1.0", - "lodash": "^4.17.14", - "request": "^2.81.0", - "request-promise": "^4.2.0", - "webhook-discord": "^2.0.6" - } -} diff --git a/starters/README.md b/starters/README.md index 34b05c5624d8a..63adf7bd73a43 100644 --- a/starters/README.md +++ b/starters/README.md @@ -45,9 +45,7 @@ · Contribute · - Support: Twitter - & - Discord + Support: Discussions Gatsby is a modern framework for blazing fast websites. This repository is our monorepo for managing all the great GatsbyJS starters for the community. diff --git a/starters/blog/package-lock.json b/starters/blog/package-lock.json index 256a55291d19e..8489e6e4bc2f3 100644 --- a/starters/blog/package-lock.json +++ b/starters/blog/package-lock.json @@ -11,7 +11,7 @@ "dependencies": { "@fontsource-variable/montserrat": "^5.0.17", "@fontsource/merriweather": "^5.0.8", - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "gatsby-plugin-feed": "^5.14.0", "gatsby-plugin-image": "^3.14.0", "gatsby-plugin-manifest": "^5.14.0", @@ -2026,6 +2026,67 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "license": "MIT", + "dependencies": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", + "license": "MIT" + }, "node_modules/@fontsource-variable/montserrat": { "version": "5.0.17", "resolved": "https://registry.npmjs.org/@fontsource-variable/montserrat/-/montserrat-5.0.17.tgz", @@ -2549,6 +2610,96 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2578,39 +2729,39 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@lezer/common": { @@ -3534,6 +3685,16 @@ "@parcel/core": "^2.8.3" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -3739,11 +3900,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "node_modules/@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -3757,11 +3913,6 @@ "@types/node": "*" } }, - "node_modules/@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "node_modules/@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -3772,32 +3923,20 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "node_modules/@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" }, "node_modules/@types/hast": { "version": "2.3.4", @@ -3839,11 +3978,6 @@ "keyv": "*" } }, - "node_modules/@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, "node_modules/@types/mdast": { "version": "3.0.10", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", @@ -3852,19 +3986,6 @@ "@types/unist": "*" } }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "node_modules/@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", @@ -3911,15 +4032,6 @@ "@types/node": "*" } }, - "node_modules/@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "dependencies": { - "@types/glob": "*", - "@types/node": "*" - } - }, "node_modules/@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -3930,11 +4042,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "node_modules/@types/unist": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", @@ -4180,145 +4287,162 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" }, "node_modules/abortcontroller-polyfill": { "version": "1.7.5", @@ -4338,9 +4462,10 @@ } }, "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -4348,14 +4473,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -4474,14 +4591,6 @@ "node": ">=6" } }, - "node_modules/ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "engines": { - "node": ">=4" - } - }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -4532,11 +4641,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "node_modules/application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -5140,19 +5244,6 @@ "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -5249,9 +5340,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "funding": [ { "type": "opencollective", @@ -5266,11 +5357,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" @@ -5442,9 +5534,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", "funding": [ { "type": "opencollective", @@ -5458,7 +5550,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/capital-case": { "version": "1.0.4", @@ -5969,11 +6062,6 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -6052,16 +6140,17 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "engines": [ - "node >= 0.8" + "node >= 6.0" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -6183,11 +6272,6 @@ "url": "https://opencollective.com/core-js" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -6236,9 +6320,10 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -6797,57 +6882,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "dependencies": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - } - }, - "node_modules/devcert/node_modules/@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "node_modules/devcert/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/devcert/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -6967,15 +7001,22 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", + "license": "ISC" }, "node_modules/emoji-regex": { "version": "9.2.2", @@ -7089,9 +7130,10 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -7133,11 +7175,6 @@ "node": ">=4" } }, - "node_modules/eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -7340,9 +7377,10 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -8407,6 +8445,34 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -8636,9 +8702,9 @@ } }, "node_modules/gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -8651,6 +8717,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8701,7 +8768,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -8725,7 +8791,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -8760,7 +8826,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -8801,7 +8867,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -8906,9 +8972,9 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==", "license": "MIT", "engines": { "node": ">=14.15.0" @@ -9477,9 +9543,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/node_modules/@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" @@ -9653,9 +9719,9 @@ } }, "node_modules/gatsby/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -9761,14 +9827,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", - "engines": { - "node": ">=4" - } - }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -9840,7 +9898,8 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" }, "node_modules/global-modules": { "version": "2.0.0", @@ -11150,14 +11209,6 @@ "tslib": "^2.0.3" } }, - "node_modules/is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "dependencies": { - "punycode": "^2.1.1" - } - }, "node_modules/is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -11213,11 +11264,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -11231,6 +11277,21 @@ "node": ">=0.10.0" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -12186,6 +12247,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -12250,20 +12320,21 @@ } }, "node_modules/multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", + "license": "MIT", "dependencies": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 10.16.0" } }, "node_modules/mute-stream": { @@ -12337,11 +12408,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "node_modules/nlcst-to-string": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-2.0.4.tgz", @@ -12501,9 +12567,10 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -12855,6 +12922,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/package-json/node_modules/@sindresorhus/is": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", @@ -13139,76 +13212,6 @@ "tslib": "^2.0.3" } }, - "node_modules/password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "dependencies": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - } - }, - "node_modules/password-prompt/node_modules/cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/password-prompt/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/password-prompt/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/password-prompt/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -13266,6 +13269,28 @@ "node": ">=0.10.0" } }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -13297,9 +13322,10 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -13991,19 +14017,6 @@ "node": ">=8" } }, - "node_modules/prebuild-install/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/prebuild-install/node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -14091,11 +14104,6 @@ "stream-parser": "~0.3.1" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -14485,24 +14493,19 @@ } }, "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, "node_modules/readable-web-to-node-stream": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", @@ -14518,19 +14521,6 @@ "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -15022,17 +15012,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/rss": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/rss/-/rss-1.2.2.tgz", @@ -15889,6 +15868,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -16000,6 +16000,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -16112,11 +16125,6 @@ "postcss": "^8.2.15" } }, - "node_modules/sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -16305,12 +16313,13 @@ } }, "node_modules/terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "license": "BSD-2-Clause", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -16322,15 +16331,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -16354,6 +16364,34 @@ } } }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -16367,10 +16405,36 @@ "node": ">= 10.13.0" } }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } @@ -16704,7 +16768,8 @@ "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", @@ -17024,9 +17089,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "funding": [ { "type": "opencollective", @@ -17041,9 +17106,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -17200,9 +17266,10 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -17231,33 +17298,33 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -17391,6 +17458,65 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -17501,6 +17627,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -19197,6 +19341,52 @@ } } }, + "@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "requires": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==" + }, "@fontsource-variable/montserrat": { "version": "5.0.17", "resolved": "https://registry.npmjs.org/@fontsource-variable/montserrat/-/montserrat-5.0.17.tgz", @@ -19647,6 +19837,59 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -19667,38 +19910,37 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } } } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@lezer/common": { @@ -20263,6 +20505,12 @@ "nullthrows": "^1.1.1" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -20403,11 +20651,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -20421,11 +20664,6 @@ "@types/node": "*" } }, - "@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -20436,32 +20674,18 @@ } }, "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" }, "@types/hast": { "version": "2.3.4", @@ -20502,11 +20726,6 @@ "keyv": "*" } }, - "@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, "@types/mdast": { "version": "3.0.10", "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.10.tgz", @@ -20515,19 +20734,6 @@ "@types/unist": "*" } }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "requires": { - "@types/node": "*" - } - }, "@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", @@ -20574,15 +20780,6 @@ "@types/node": "*" } }, - "@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "requires": { - "@types/glob": "*", - "@types/node": "*" - } - }, "@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -20593,11 +20790,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "@types/unist": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", @@ -20751,133 +20943,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "requires": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -20906,15 +21098,9 @@ } }, "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" - }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "requires": {} + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" }, "acorn-jsx": { "version": "5.3.2", @@ -21001,11 +21187,6 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - }, "ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -21038,11 +21219,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -21465,18 +21641,6 @@ "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "bluebird": { @@ -21561,14 +21725,14 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" } }, "bser": { @@ -21688,9 +21852,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==" + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==" }, "capital-case": { "version": "1.0.4", @@ -22048,11 +22212,6 @@ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz", "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==" }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -22121,13 +22280,13 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -22219,11 +22378,6 @@ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz", "integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==" }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -22262,9 +22416,9 @@ } }, "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -22636,56 +22790,6 @@ } } }, - "devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "requires": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -22775,15 +22879,20 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==" }, "emoji-regex": { "version": "9.2.2", @@ -22873,9 +22982,9 @@ "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" }, "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -22899,11 +23008,6 @@ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==" }, - "eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -23073,9 +23177,9 @@ } }, "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" }, "escape-html": { "version": "1.0.3", @@ -23846,6 +23950,22 @@ "is-callable": "^1.1.3" } }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + } + }, "fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -23999,9 +24119,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -24012,6 +24132,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -24062,7 +24183,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -24086,7 +24206,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -24122,7 +24242,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -24163,7 +24283,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -24216,9 +24336,9 @@ }, "dependencies": { "@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "requires": { "eslint-visitor-keys": "^3.4.3" } @@ -24320,9 +24440,9 @@ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "requires": { "ms": "^2.1.3" } @@ -24437,9 +24557,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==" + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==" }, "gatsby-legacy-polyfills": { "version": "3.14.0", @@ -24777,11 +24897,6 @@ "hasown": "^2.0.0" } }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -25707,14 +25822,6 @@ "tslib": "^2.0.3" } }, - "is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "requires": { - "punycode": "^2.1.1" - } - }, "is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -25752,11 +25859,6 @@ "system-architecture": "^0.1.0" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -25767,6 +25869,15 @@ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -26487,6 +26598,11 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -26539,17 +26655,17 @@ } }, "multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", "requires": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" } }, "mute-stream": { @@ -26602,11 +26718,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "nlcst-to-string": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/nlcst-to-string/-/nlcst-to-string-2.0.4.tgz", @@ -26719,9 +26830,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" }, "normalize-path": { "version": "3.0.0", @@ -27041,6 +27152,11 @@ } } }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -27154,60 +27270,6 @@ "tslib": "^2.0.3" } }, - "password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "requires": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, "path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -27250,6 +27312,22 @@ "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==" }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -27271,9 +27349,9 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -27701,16 +27779,6 @@ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==" }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, "tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -27776,11 +27844,6 @@ "stream-parser": "~0.3.1" } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -28067,24 +28130,13 @@ } }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, "readable-web-to-node-stream": { @@ -28093,18 +28145,6 @@ "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "requires": { "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "readdirp": { @@ -28467,14 +28507,6 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, "rss": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/rss/-/rss-1.2.2.tgz", @@ -29138,6 +29170,23 @@ } } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, "string.prototype.includes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", @@ -29212,6 +29261,14 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -29282,11 +29339,6 @@ "postcss-selector-parser": "^6.0.4" } }, - "sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -29430,12 +29482,12 @@ } }, "terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -29448,17 +29500,36 @@ } }, "terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "requires": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -29469,10 +29540,26 @@ "supports-color": "^8.0.0" } }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "requires": { "randombytes": "^2.1.0" } @@ -29937,12 +30024,12 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" } }, "upper-case": { @@ -30050,9 +30137,9 @@ } }, "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -30074,36 +30161,75 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -30269,6 +30395,16 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/starters/blog/package.json b/starters/blog/package.json index b289ca00a0717..32d1fd41ee5df 100644 --- a/starters/blog/package.json +++ b/starters/blog/package.json @@ -10,7 +10,7 @@ "dependencies": { "@fontsource/merriweather": "^5.0.8", "@fontsource-variable/montserrat": "^5.0.17", - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "gatsby-plugin-feed": "^5.14.0", "gatsby-plugin-image": "^3.14.0", "gatsby-plugin-manifest": "^5.14.0", diff --git a/starters/default/package-lock.json b/starters/default/package-lock.json index 63fa23f80a5bc..7fba294445ec2 100644 --- a/starters/default/package-lock.json +++ b/starters/default/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "gatsby-plugin-image": "^3.14.0", "gatsby-plugin-manifest": "^5.14.0", "gatsby-plugin-sharp": "^5.14.0", @@ -2018,6 +2018,67 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "license": "MIT", + "dependencies": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", + "license": "MIT" + }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -2538,6 +2599,96 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2567,39 +2718,39 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@lezer/common": { @@ -3523,6 +3674,16 @@ "@parcel/core": "^2.8.3" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -3728,11 +3889,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "node_modules/@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -3746,11 +3902,6 @@ "@types/node": "*" } }, - "node_modules/@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "node_modules/@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -3761,32 +3912,20 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "node_modules/@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" }, "node_modules/@types/http-cache-semantics": { "version": "4.0.1", @@ -3820,24 +3959,6 @@ "keyv": "*" } }, - "node_modules/@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "node_modules/@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", @@ -3879,15 +4000,6 @@ "@types/node": "*" } }, - "node_modules/@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "dependencies": { - "@types/glob": "*", - "@types/node": "*" - } - }, "node_modules/@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -3898,11 +4010,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "node_modules/@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -4143,145 +4250,162 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" }, "node_modules/abortcontroller-polyfill": { "version": "1.7.5", @@ -4301,9 +4425,10 @@ } }, "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -4311,14 +4436,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -4437,14 +4554,6 @@ "node": ">=6" } }, - "node_modules/ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "engines": { - "node": ">=4" - } - }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -4495,11 +4604,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "node_modules/application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -5085,19 +5189,6 @@ "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -5194,9 +5285,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "funding": [ { "type": "opencollective", @@ -5211,11 +5302,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" @@ -5387,9 +5479,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", "funding": [ { "type": "opencollective", @@ -5403,7 +5495,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/capital-case": { "version": "1.0.4", @@ -5813,11 +5906,6 @@ "node": ">= 0.8" } }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -5896,16 +5984,17 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "engines": [ - "node >= 0.8" + "node >= 6.0" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -6027,11 +6116,6 @@ "url": "https://opencollective.com/core-js" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -6636,57 +6720,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "dependencies": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - } - }, - "node_modules/devcert/node_modules/@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "node_modules/devcert/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/devcert/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -6806,15 +6839,22 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", + "license": "ISC" }, "node_modules/emoji-regex": { "version": "9.2.2", @@ -6928,9 +6968,10 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6969,11 +7010,6 @@ "node": ">=4" } }, - "node_modules/eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -7176,9 +7212,10 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -8227,6 +8264,34 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -8456,9 +8521,9 @@ } }, "node_modules/gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -8471,6 +8536,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8521,7 +8587,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -8545,7 +8610,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -8580,7 +8645,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -8621,7 +8686,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -8726,9 +8791,9 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==", "license": "MIT", "engines": { "node": ">=14.15.0" @@ -9177,9 +9242,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/node_modules/@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" @@ -9353,9 +9418,9 @@ } }, "node_modules/gatsby/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -9452,14 +9517,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", - "engines": { - "node": ">=4" - } - }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -9526,7 +9583,8 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" }, "node_modules/global-modules": { "version": "2.0.0", @@ -10596,14 +10654,6 @@ "tslib": "^2.0.3" } }, - "node_modules/is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "dependencies": { - "punycode": "^2.1.1" - } - }, "node_modules/is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -10659,11 +10709,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -10677,6 +10722,21 @@ "node": ">=0.10.0" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -11272,6 +11332,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -11336,20 +11405,21 @@ } }, "node_modules/multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", + "license": "MIT", "dependencies": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 10.16.0" } }, "node_modules/mute-stream": { @@ -11423,11 +11493,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -11515,9 +11580,10 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11864,6 +11930,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/package-json/node_modules/@sindresorhus/is": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", @@ -12069,76 +12141,6 @@ "tslib": "^2.0.3" } }, - "node_modules/password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "dependencies": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - } - }, - "node_modules/password-prompt/node_modules/cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/password-prompt/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/password-prompt/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/password-prompt/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -12196,6 +12198,28 @@ "node": ">=0.10.0" } }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -12227,9 +12251,10 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -12921,19 +12946,6 @@ "node": ">=8" } }, - "node_modules/prebuild-install/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/prebuild-install/node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -13013,11 +13025,6 @@ "stream-parser": "~0.3.1" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -13395,24 +13402,19 @@ } }, "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, "node_modules/readable-web-to-node-stream": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", @@ -13428,19 +13430,6 @@ "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -13754,17 +13743,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -14559,6 +14537,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -14656,6 +14655,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -14760,11 +14772,6 @@ "postcss": "^8.2.15" } }, - "node_modules/sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -14890,12 +14897,13 @@ } }, "node_modules/terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "license": "BSD-2-Clause", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -14907,15 +14915,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -14939,6 +14948,34 @@ } } }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -14952,10 +14989,36 @@ "node": ">= 10.13.0" } }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } @@ -15280,7 +15343,8 @@ "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", @@ -15429,9 +15493,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "funding": [ { "type": "opencollective", @@ -15446,9 +15510,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -15568,9 +15633,10 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -15590,33 +15656,33 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -15750,6 +15816,65 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15860,6 +15985,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -17542,6 +17685,52 @@ } } }, + "@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "requires": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==" + }, "@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -17990,6 +18179,59 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -18010,38 +18252,37 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } } } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@lezer/common": { @@ -18606,6 +18847,12 @@ "nullthrows": "^1.1.1" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -18746,11 +18993,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -18764,11 +19006,6 @@ "@types/node": "*" } }, - "@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -18779,32 +19016,18 @@ } }, "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" }, "@types/http-cache-semantics": { "version": "4.0.1", @@ -18837,24 +19060,6 @@ "keyv": "*" } }, - "@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "requires": { - "@types/node": "*" - } - }, "@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", @@ -18896,15 +19101,6 @@ "@types/node": "*" } }, - "@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "requires": { - "@types/glob": "*", - "@types/node": "*" - } - }, "@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -18915,11 +19111,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -19068,133 +19259,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "requires": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -19223,15 +19414,9 @@ } }, "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" - }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "requires": {} + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" }, "acorn-jsx": { "version": "5.3.2", @@ -19318,11 +19503,6 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - }, "ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -19355,11 +19535,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -19772,18 +19947,6 @@ "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "bluebird": { @@ -19868,14 +20031,14 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" } }, "bser": { @@ -19995,9 +20158,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==" + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==" }, "capital-case": { "version": "1.0.4", @@ -20288,11 +20451,6 @@ "delayed-stream": "~1.0.0" } }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -20361,13 +20519,13 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -20459,11 +20617,6 @@ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz", "integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==" }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -20871,56 +21024,6 @@ } } }, - "devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "requires": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -21010,15 +21113,20 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==" }, "emoji-regex": { "version": "9.2.2", @@ -21108,9 +21216,9 @@ "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" }, "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -21134,11 +21242,6 @@ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==" }, - "eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -21308,9 +21411,9 @@ } }, "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" }, "escape-html": { "version": "1.0.3", @@ -22068,6 +22171,22 @@ "is-callable": "^1.1.3" } }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + } + }, "fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -22221,9 +22340,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -22234,6 +22353,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -22284,7 +22404,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -22308,7 +22427,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -22344,7 +22463,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -22385,7 +22504,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -22438,9 +22557,9 @@ }, "dependencies": { "@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "requires": { "eslint-visitor-keys": "^3.4.3" } @@ -22542,9 +22661,9 @@ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "requires": { "ms": "^2.1.3" } @@ -22651,9 +22770,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==" + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==" }, "gatsby-legacy-polyfills": { "version": "3.14.0", @@ -22910,11 +23029,6 @@ "hasown": "^2.0.0" } }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -23675,14 +23789,6 @@ "tslib": "^2.0.3" } }, - "is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "requires": { - "punycode": "^2.1.1" - } - }, "is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -23720,11 +23826,6 @@ "system-architecture": "^0.1.0" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -23735,6 +23836,15 @@ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -24201,6 +24311,11 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -24253,17 +24368,17 @@ } }, "multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", "requires": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" } }, "mute-stream": { @@ -24316,11 +24431,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -24381,9 +24491,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" }, "normalize-path": { "version": "3.0.0", @@ -24698,6 +24808,11 @@ } } }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -24750,60 +24865,6 @@ "tslib": "^2.0.3" } }, - "password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "requires": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, "path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -24846,6 +24907,22 @@ "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==" }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -24867,9 +24944,9 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -25297,16 +25374,6 @@ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==" }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, "tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -25367,11 +25434,6 @@ "stream-parser": "~0.3.1" } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -25650,24 +25712,13 @@ } }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, "readable-web-to-node-stream": { @@ -25676,18 +25727,6 @@ "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "requires": { "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "readdirp": { @@ -25928,14 +25967,6 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -26548,6 +26579,23 @@ } } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, "string.prototype.includes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", @@ -26612,6 +26660,14 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -26677,11 +26733,6 @@ "postcss-selector-parser": "^6.0.4" } }, - "sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -26778,12 +26829,12 @@ } }, "terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -26796,17 +26847,36 @@ } }, "terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "requires": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -26817,10 +26887,26 @@ "supports-color": "^8.0.0" } }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "requires": { "randombytes": "^2.1.0" } @@ -27162,12 +27248,12 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" } }, "upper-case": { @@ -27250,9 +27336,9 @@ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -27269,36 +27355,75 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -27464,6 +27589,16 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/starters/default/package.json b/starters/default/package.json index 77ca7329dad7e..0a0406ab93a55 100644 --- a/starters/default/package.json +++ b/starters/default/package.json @@ -5,7 +5,7 @@ "version": "0.1.0", "author": "Kyle Mathews ", "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "gatsby-plugin-image": "^3.14.0", "gatsby-plugin-manifest": "^5.14.0", "gatsby-plugin-sharp": "^5.14.0", diff --git a/starters/default/src/pages/index.js b/starters/default/src/pages/index.js index 97b4b24cd53fa..f5a18e0fa0db2 100644 --- a/starters/default/src/pages/index.js +++ b/starters/default/src/pages/index.js @@ -47,7 +47,6 @@ const samplePageLinks = [ ] const moreLinks = [ - { text: "Join us on Discord", url: "https://gatsby.dev/discord" }, { text: "Documentation", url: "https://gatsbyjs.com/docs/", diff --git a/starters/gatsby-starter-minimal-ts/package-lock.json b/starters/gatsby-starter-minimal-ts/package-lock.json index f0a3eb7a0ccab..8f71cca6ef879 100644 --- a/starters/gatsby-starter-minimal-ts/package-lock.json +++ b/starters/gatsby-starter-minimal-ts/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "react": "^18.2.0", "react-dom": "^18.2.0" }, @@ -2016,6 +2016,67 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "license": "MIT", + "dependencies": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", + "license": "MIT" + }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -2477,6 +2538,96 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2506,39 +2657,39 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@lezer/common": { @@ -3462,6 +3613,16 @@ "@parcel/core": "^2.8.3" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -3667,11 +3828,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "node_modules/@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -3685,11 +3841,6 @@ "@types/node": "*" } }, - "node_modules/@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "node_modules/@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -3700,32 +3851,20 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "node_modules/@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" }, "node_modules/@types/http-cache-semantics": { "version": "4.0.1", @@ -3759,24 +3898,6 @@ "keyv": "*" } }, - "node_modules/@types/lodash": { - "version": "4.14.182", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz", - "integrity": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" - }, - "node_modules/@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" - }, - "node_modules/@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/node": { "version": "20.11.19", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz", @@ -3830,15 +3951,6 @@ "@types/node": "*" } }, - "node_modules/@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "dependencies": { - "@types/glob": "*", - "@types/node": "*" - } - }, "node_modules/@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -3849,11 +3961,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "node_modules/@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -4094,145 +4201,162 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" }, "node_modules/abortcontroller-polyfill": { "version": "1.7.3", @@ -4252,9 +4376,10 @@ } }, "node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -4262,14 +4387,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -4463,11 +4580,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "node_modules/application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -5102,20 +5214,6 @@ "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -5212,9 +5310,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "funding": [ { "type": "opencollective", @@ -5229,11 +5327,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" @@ -5406,9 +5505,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", "funding": [ { "type": "opencollective", @@ -5422,7 +5521,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/capital-case": { "version": "1.0.4", @@ -5835,11 +5935,6 @@ "node": ">= 0.8" } }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -5918,16 +6013,17 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "engines": [ - "node >= 0.8" + "node >= 6.0" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -6057,11 +6153,6 @@ "url": "https://opencollective.com/core-js" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -6666,57 +6757,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "dependencies": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - } - }, - "node_modules/devcert/node_modules/@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "node_modules/devcert/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/devcert/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -6836,15 +6876,22 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", + "license": "ISC" }, "node_modules/emoji-regex": { "version": "9.2.2", @@ -6958,9 +7005,10 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6999,11 +7047,6 @@ "node": ">=4" } }, - "node_modules/eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -7206,9 +7249,10 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -8235,6 +8279,34 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -8465,9 +8537,9 @@ } }, "node_modules/gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -8480,6 +8552,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8530,7 +8603,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -8554,7 +8626,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -8589,7 +8661,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -8630,7 +8702,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -8735,9 +8807,9 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==", "license": "MIT", "engines": { "node": ">=14.15.0" @@ -9051,9 +9123,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/node_modules/@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" @@ -9227,9 +9299,9 @@ } }, "node_modules/gatsby/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -9326,14 +9398,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", - "engines": { - "node": ">=4" - } - }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -9401,7 +9465,8 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" }, "node_modules/global-modules": { "version": "2.0.0", @@ -10444,14 +10509,6 @@ "tslib": "^2.0.3" } }, - "node_modules/is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "dependencies": { - "punycode": "^2.1.1" - } - }, "node_modules/is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -10507,11 +10564,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -10525,6 +10577,21 @@ "node": ">=0.10.0" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -11117,6 +11184,15 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -11182,20 +11258,21 @@ } }, "node_modules/multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", + "license": "MIT", "dependencies": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 10.16.0" } }, "node_modules/mute-stream": { @@ -11342,9 +11419,10 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11678,6 +11756,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/package-json/node_modules/@sindresorhus/is": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", @@ -11883,15 +11967,6 @@ "tslib": "^2.0.3" } }, - "node_modules/password-prompt": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", - "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", - "dependencies": { - "ansi-escapes": "^4.3.2", - "cross-spawn": "^7.0.3" - } - }, "node_modules/path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -11949,6 +12024,28 @@ "node": ">=0.10.0" } }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -11980,9 +12077,10 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -12692,20 +12790,6 @@ "node": ">=8" } }, - "node_modules/prebuild-install/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/prebuild-install/node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -12751,11 +12835,6 @@ "renderkid": "^2.0.4" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -13134,24 +13213,19 @@ } }, "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, "node_modules/readable-web-to-node-stream": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", @@ -13167,19 +13241,6 @@ "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -13493,17 +13554,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -14281,6 +14331,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -14378,6 +14449,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -14463,11 +14547,6 @@ "postcss": "^8.2.15" } }, - "node_modules/sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -14598,12 +14677,13 @@ } }, "node_modules/terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "license": "BSD-2-Clause", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -14615,15 +14695,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -14647,6 +14728,34 @@ } } }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -14660,10 +14769,36 @@ "node": ">= 10.13.0" } }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } @@ -14976,7 +15111,8 @@ "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", @@ -15129,9 +15265,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "funding": [ { "type": "opencollective", @@ -15146,9 +15282,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -15263,9 +15400,10 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -15285,33 +15423,33 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -15445,6 +15583,65 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15555,6 +15752,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -17245,6 +17460,52 @@ } } }, + "@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "requires": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==" + }, "@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -17631,6 +17892,59 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -17651,38 +17965,37 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" }, "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "requires": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } } } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@lezer/common": { @@ -18247,6 +18560,12 @@ "nullthrows": "^1.1.1" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -18387,11 +18706,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -18405,11 +18719,6 @@ "@types/node": "*" } }, - "@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -18420,32 +18729,18 @@ } }, "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" }, "@types/http-cache-semantics": { "version": "4.0.1", @@ -18478,24 +18773,6 @@ "keyv": "*" } }, - "@types/lodash": { - "version": "4.14.182", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz", - "integrity": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" - }, - "@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" - }, - "@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "requires": { - "@types/node": "*" - } - }, "@types/node": { "version": "20.11.19", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz", @@ -18549,15 +18826,6 @@ "@types/node": "*" } }, - "@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "requires": { - "@types/glob": "*", - "@types/node": "*" - } - }, "@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -18568,11 +18836,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -18721,133 +18984,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "requires": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -18876,15 +19139,9 @@ } }, "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" - }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "requires": {} + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" }, "acorn-jsx": { "version": "5.3.2", @@ -19018,11 +19275,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -19476,18 +19728,6 @@ "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "bluebird": { @@ -19572,14 +19812,14 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" } }, "bser": { @@ -19699,9 +19939,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==" + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==" }, "capital-case": { "version": "1.0.4", @@ -19992,11 +20232,6 @@ "delayed-stream": "~1.0.0" } }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -20065,13 +20300,13 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -20173,11 +20408,6 @@ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.1.tgz", "integrity": "sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==" }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -20585,56 +20815,6 @@ } } }, - "devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "requires": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -20724,15 +20904,20 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==" }, "emoji-regex": { "version": "9.2.2", @@ -20822,9 +21007,9 @@ "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" }, "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -20848,11 +21033,6 @@ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==" }, - "eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -21022,9 +21202,9 @@ } }, "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" }, "escape-html": { "version": "1.0.3", @@ -21767,6 +21947,22 @@ "is-callable": "^1.1.3" } }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + } + }, "fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -21920,9 +22116,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21933,6 +22129,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -21983,7 +22180,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -22007,7 +22203,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -22043,7 +22239,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -22084,7 +22280,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -22150,9 +22346,9 @@ }, "dependencies": { "@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "requires": { "eslint-visitor-keys": "^3.4.3" } @@ -22254,9 +22450,9 @@ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "requires": { "ms": "^2.1.3" } @@ -22363,9 +22559,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==" + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==" }, "gatsby-legacy-polyfills": { "version": "3.14.0", @@ -22524,11 +22720,6 @@ "hasown": "^2.0.0" } }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -23273,14 +23464,6 @@ "tslib": "^2.0.3" } }, - "is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "requires": { - "punycode": "^2.1.1" - } - }, "is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -23318,11 +23501,6 @@ "system-architecture": "^0.1.0" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -23333,6 +23511,15 @@ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -23799,6 +23986,11 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -23851,17 +24043,17 @@ } }, "multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", "requires": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" } }, "mute-stream": { @@ -23964,9 +24156,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" }, "normalize-path": { "version": "3.0.0", @@ -24271,6 +24463,11 @@ } } }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -24323,15 +24520,6 @@ "tslib": "^2.0.3" } }, - "password-prompt": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", - "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", - "requires": { - "ansi-escapes": "^4.3.2", - "cross-spawn": "^7.0.3" - } - }, "path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -24374,6 +24562,22 @@ "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==" }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -24395,9 +24599,9 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -24835,16 +25039,6 @@ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==" }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, "tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -24884,11 +25078,6 @@ "renderkid": "^2.0.4" } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -25167,24 +25356,13 @@ } }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, "readable-web-to-node-stream": { @@ -25193,18 +25371,6 @@ "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "requires": { "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "readdirp": { @@ -25445,14 +25611,6 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -26039,6 +26197,23 @@ } } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, "string.prototype.includes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", @@ -26103,6 +26278,14 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -26153,11 +26336,6 @@ "postcss-selector-parser": "^6.0.4" } }, - "sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -26255,12 +26433,12 @@ } }, "terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -26273,17 +26451,36 @@ } }, "terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "requires": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -26294,10 +26491,26 @@ "supports-color": "^8.0.0" } }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "requires": { "randombytes": "^2.1.0" } @@ -26633,12 +26846,12 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" } }, "upper-case": { @@ -26716,9 +26929,9 @@ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -26735,36 +26948,75 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -26930,6 +27182,16 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/starters/gatsby-starter-minimal-ts/package.json b/starters/gatsby-starter-minimal-ts/package.json index 581ca003da2a4..4d4c42a5a2754 100644 --- a/starters/gatsby-starter-minimal-ts/package.json +++ b/starters/gatsby-starter-minimal-ts/package.json @@ -17,7 +17,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/starters/gatsby-starter-minimal/package-lock.json b/starters/gatsby-starter-minimal/package-lock.json index 419fd34c5ffc6..d425104a9e6f9 100644 --- a/starters/gatsby-starter-minimal/package-lock.json +++ b/starters/gatsby-starter-minimal/package-lock.json @@ -9,7 +9,7 @@ "version": "1.0.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "react": "^18.2.0", "react-dom": "^18.2.0" } @@ -2010,6 +2010,67 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "license": "MIT", + "dependencies": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", + "license": "MIT" + }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -2471,6 +2532,96 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2500,39 +2651,39 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@lezer/common": { @@ -3456,6 +3607,16 @@ "@parcel/core": "^2.8.3" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -3661,11 +3822,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "node_modules/@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -3679,11 +3835,6 @@ "@types/node": "*" } }, - "node_modules/@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "node_modules/@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -3694,32 +3845,20 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "node_modules/@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" }, "node_modules/@types/http-cache-semantics": { "version": "4.0.1", @@ -3753,24 +3892,6 @@ "keyv": "*" } }, - "node_modules/@types/lodash": { - "version": "4.14.182", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz", - "integrity": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" - }, - "node_modules/@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" - }, - "node_modules/@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/node": { "version": "18.6.3", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.3.tgz", @@ -3812,15 +3933,6 @@ "@types/node": "*" } }, - "node_modules/@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "dependencies": { - "@types/glob": "*", - "@types/node": "*" - } - }, "node_modules/@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -3831,11 +3943,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "node_modules/@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -4076,145 +4183,162 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" }, "node_modules/abortcontroller-polyfill": { "version": "1.7.3", @@ -4234,9 +4358,10 @@ } }, "node_modules/acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -4244,14 +4369,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -4445,11 +4562,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "node_modules/application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -5084,20 +5196,6 @@ "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -5194,9 +5292,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "funding": [ { "type": "opencollective", @@ -5211,11 +5309,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" @@ -5388,9 +5487,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", "funding": [ { "type": "opencollective", @@ -5404,7 +5503,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/capital-case": { "version": "1.0.4", @@ -5817,11 +5917,6 @@ "node": ">= 0.8" } }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -5900,16 +5995,17 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "engines": [ - "node >= 0.8" + "node >= 6.0" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -6039,11 +6135,6 @@ "url": "https://opencollective.com/core-js" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -6092,9 +6183,10 @@ } }, "node_modules/cross-spawn": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz", - "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -6648,57 +6740,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "dependencies": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - } - }, - "node_modules/devcert/node_modules/@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "node_modules/devcert/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/devcert/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -6818,15 +6859,22 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", + "license": "ISC" }, "node_modules/emoji-regex": { "version": "9.2.2", @@ -6940,9 +6988,10 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -6981,11 +7030,6 @@ "node": ">=4" } }, - "node_modules/eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -7188,9 +7232,10 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -8217,6 +8262,34 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -8447,9 +8520,9 @@ } }, "node_modules/gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -8462,6 +8535,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8512,7 +8586,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -8536,7 +8609,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -8571,7 +8644,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -8612,7 +8685,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -8717,9 +8790,9 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==", "license": "MIT", "engines": { "node": ">=14.15.0" @@ -9033,9 +9106,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/node_modules/@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" @@ -9209,9 +9282,9 @@ } }, "node_modules/gatsby/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -9308,14 +9381,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", - "engines": { - "node": ">=4" - } - }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -9383,7 +9448,8 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" }, "node_modules/global-modules": { "version": "2.0.0", @@ -10426,14 +10492,6 @@ "tslib": "^2.0.3" } }, - "node_modules/is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "dependencies": { - "punycode": "^2.1.1" - } - }, "node_modules/is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -10489,11 +10547,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -10507,6 +10560,21 @@ "node": ">=0.10.0" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -11099,6 +11167,15 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -11164,20 +11241,21 @@ } }, "node_modules/multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", + "license": "MIT", "dependencies": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 10.16.0" } }, "node_modules/mute-stream": { @@ -11324,9 +11402,10 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11660,6 +11739,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/package-json/node_modules/@sindresorhus/is": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", @@ -11865,15 +11950,6 @@ "tslib": "^2.0.3" } }, - "node_modules/password-prompt": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", - "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", - "dependencies": { - "ansi-escapes": "^4.3.2", - "cross-spawn": "^7.0.3" - } - }, "node_modules/path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -11931,6 +12007,28 @@ "node": ">=0.10.0" } }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -11962,9 +12060,10 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -12674,20 +12773,6 @@ "node": ">=8" } }, - "node_modules/prebuild-install/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/prebuild-install/node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -12733,11 +12818,6 @@ "renderkid": "^2.0.4" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -13116,24 +13196,19 @@ } }, "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, "node_modules/readable-web-to-node-stream": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", @@ -13149,19 +13224,6 @@ "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -13475,17 +13537,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -14263,6 +14314,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -14360,6 +14432,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -14445,11 +14530,6 @@ "postcss": "^8.2.15" } }, - "node_modules/sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -14580,12 +14660,13 @@ } }, "node_modules/terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "license": "BSD-2-Clause", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -14597,15 +14678,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -14629,6 +14711,34 @@ } } }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -14642,10 +14752,36 @@ "node": ">= 10.13.0" } }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } @@ -14958,7 +15094,8 @@ "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", @@ -15107,9 +15244,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "funding": [ { "type": "opencollective", @@ -15124,9 +15261,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -15241,9 +15379,10 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -15263,33 +15402,33 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -15423,6 +15562,65 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15533,6 +15731,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -17223,6 +17439,52 @@ } } }, + "@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "requires": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==" + }, "@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -17609,6 +17871,59 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -17629,38 +17944,37 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" }, "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "requires": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } } } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@lezer/common": { @@ -18225,6 +18539,12 @@ "nullthrows": "^1.1.1" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -18365,11 +18685,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -18383,11 +18698,6 @@ "@types/node": "*" } }, - "@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -18398,32 +18708,18 @@ } }, "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" }, "@types/http-cache-semantics": { "version": "4.0.1", @@ -18456,24 +18752,6 @@ "keyv": "*" } }, - "@types/lodash": { - "version": "4.14.182", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz", - "integrity": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" - }, - "@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==" - }, - "@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "requires": { - "@types/node": "*" - } - }, "@types/node": { "version": "18.6.3", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.6.3.tgz", @@ -18515,15 +18793,6 @@ "@types/node": "*" } }, - "@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "requires": { - "@types/glob": "*", - "@types/node": "*" - } - }, "@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -18534,11 +18803,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -18687,133 +18951,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "requires": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -18842,15 +19106,9 @@ } }, "acorn": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", - "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==" - }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "requires": {} + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" }, "acorn-jsx": { "version": "5.3.2", @@ -18984,11 +19242,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -19442,18 +19695,6 @@ "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "bluebird": { @@ -19538,14 +19779,14 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" } }, "bser": { @@ -19665,9 +19906,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==" + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==" }, "capital-case": { "version": "1.0.4", @@ -19958,11 +20199,6 @@ "delayed-stream": "~1.0.0" } }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -20031,13 +20267,13 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -20139,11 +20375,6 @@ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.24.1.tgz", "integrity": "sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==" }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -20182,9 +20413,9 @@ } }, "cross-spawn": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz", - "integrity": "sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==", + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "requires": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -20551,56 +20782,6 @@ } } }, - "devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "requires": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -20690,15 +20871,20 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==" }, "emoji-regex": { "version": "9.2.2", @@ -20788,9 +20974,9 @@ "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" }, "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -20814,11 +21000,6 @@ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==" }, - "eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -20988,9 +21169,9 @@ } }, "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" }, "escape-html": { "version": "1.0.3", @@ -21733,6 +21914,22 @@ "is-callable": "^1.1.3" } }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + } + }, "fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -21886,9 +22083,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -21899,6 +22096,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -21949,7 +22147,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -21973,7 +22170,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -22009,7 +22206,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -22050,7 +22247,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -22116,9 +22313,9 @@ }, "dependencies": { "@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "requires": { "eslint-visitor-keys": "^3.4.3" } @@ -22220,9 +22417,9 @@ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "requires": { "ms": "^2.1.3" } @@ -22329,9 +22526,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==" + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==" }, "gatsby-legacy-polyfills": { "version": "3.14.0", @@ -22490,11 +22687,6 @@ "hasown": "^2.0.0" } }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -23239,14 +23431,6 @@ "tslib": "^2.0.3" } }, - "is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "requires": { - "punycode": "^2.1.1" - } - }, "is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -23284,11 +23468,6 @@ "system-architecture": "^0.1.0" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -23299,6 +23478,15 @@ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -23765,6 +23953,11 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -23817,17 +24010,17 @@ } }, "multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", "requires": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" } }, "mute-stream": { @@ -23930,9 +24123,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" }, "normalize-path": { "version": "3.0.0", @@ -24237,6 +24430,11 @@ } } }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -24289,15 +24487,6 @@ "tslib": "^2.0.3" } }, - "password-prompt": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.3.tgz", - "integrity": "sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==", - "requires": { - "ansi-escapes": "^4.3.2", - "cross-spawn": "^7.0.3" - } - }, "path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -24340,6 +24529,22 @@ "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==" }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -24361,9 +24566,9 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -24801,16 +25006,6 @@ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==" }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, "tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -24850,11 +25045,6 @@ "renderkid": "^2.0.4" } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -25133,24 +25323,13 @@ } }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, "readable-web-to-node-stream": { @@ -25159,18 +25338,6 @@ "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "requires": { "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "readdirp": { @@ -25411,14 +25578,6 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -26005,6 +26164,23 @@ } } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, "string.prototype.includes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", @@ -26069,6 +26245,14 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -26119,11 +26303,6 @@ "postcss-selector-parser": "^6.0.4" } }, - "sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -26221,12 +26400,12 @@ } }, "terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -26239,17 +26418,36 @@ } }, "terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "requires": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -26260,10 +26458,26 @@ "supports-color": "^8.0.0" } }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "requires": { "randombytes": "^2.1.0" } @@ -26595,12 +26809,12 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" } }, "upper-case": { @@ -26678,9 +26892,9 @@ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -26697,36 +26911,75 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -26892,6 +27145,16 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/starters/gatsby-starter-minimal/package.json b/starters/gatsby-starter-minimal/package.json index ff39422761222..42423697630c6 100644 --- a/starters/gatsby-starter-minimal/package.json +++ b/starters/gatsby-starter-minimal/package.json @@ -16,7 +16,7 @@ }, "license": "0BSD", "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "react": "^18.2.0", "react-dom": "^18.2.0" } diff --git a/starters/gatsby-starter-theme-workspace/example/package.json b/starters/gatsby-starter-theme-workspace/example/package.json index f8f5d1832019a..5c35e0fbf0612 100644 --- a/starters/gatsby-starter-theme-workspace/example/package.json +++ b/starters/gatsby-starter-theme-workspace/example/package.json @@ -8,7 +8,7 @@ "build": "gatsby build" }, "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "gatsby-theme-minimal": "^1.0.0", "react": "^18.2.0", "react-dom": "^18.2.0" diff --git a/starters/gatsby-starter-wordpress-blog/package-lock.json b/starters/gatsby-starter-wordpress-blog/package-lock.json index 9f4aa4b10924e..66fb6fb970aab 100644 --- a/starters/gatsby-starter-wordpress-blog/package-lock.json +++ b/starters/gatsby-starter-wordpress-blog/package-lock.json @@ -12,11 +12,11 @@ "@fontsource-variable/montserrat": "^5.0.17", "@fontsource/merriweather": "^5.0.8", "@wordpress/block-library": "^8.28.1", - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "gatsby-plugin-image": "^3.14.0", "gatsby-plugin-manifest": "^5.14.0", "gatsby-plugin-sharp": "^5.14.0", - "gatsby-source-wordpress": "^7.14.0", + "gatsby-source-wordpress": "^7.15.0", "gatsby-transformer-sharp": "^5.14.0", "html-react-parser": "^4.2.10", "lodash": "^4.17.21", @@ -2256,6 +2256,67 @@ "heap": ">= 0.2.0" } }, + "node_modules/@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "license": "MIT", + "dependencies": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", + "license": "MIT" + }, "node_modules/@floating-ui/core": { "version": "1.5.3", "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.3.tgz", @@ -2820,6 +2881,96 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2849,39 +3000,39 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@lezer/common": { @@ -3805,6 +3956,16 @@ "@parcel/core": "^2.8.3" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -4366,11 +4527,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "node_modules/@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -4384,11 +4540,6 @@ "@types/node": "*" } }, - "node_modules/@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "node_modules/@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -4399,32 +4550,20 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "node_modules/@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" }, "node_modules/@types/gradient-parser": { "version": "0.1.3", @@ -4468,24 +4607,6 @@ "keyv": "*" } }, - "node_modules/@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "node_modules/@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/mousetrap": { "version": "1.6.10", "resolved": "https://registry.npmjs.org/@types/mousetrap/-/mousetrap-1.6.10.tgz", @@ -4545,15 +4666,6 @@ "@types/node": "*" } }, - "node_modules/@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "dependencies": { - "@types/glob": "*", - "@types/node": "*" - } - }, "node_modules/@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -4572,11 +4684,6 @@ "@types/node": "*" } }, - "node_modules/@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "node_modules/@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -4882,133 +4989,148 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -5980,12 +6102,14 @@ "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" }, "node_modules/abortcontroller-polyfill": { "version": "1.7.5", @@ -6005,9 +6129,10 @@ } }, "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -6015,14 +6140,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -6141,14 +6258,6 @@ "node": ">=6" } }, - "node_modules/ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "engines": { - "node": ">=4" - } - }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -6199,11 +6308,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "node_modules/application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -6830,19 +6934,6 @@ "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -6939,9 +7030,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "funding": [ { "type": "opencollective", @@ -6956,11 +7047,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" @@ -7154,9 +7246,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", "funding": [ { "type": "opencollective", @@ -7170,7 +7262,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/capital-case": { "version": "1.0.4", @@ -7673,11 +7766,6 @@ "node": ">= 0.8" } }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -7766,16 +7854,17 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "engines": [ - "node >= 0.8" + "node >= 6.0" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -7897,11 +7986,6 @@ "url": "https://opencollective.com/core-js" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -8549,57 +8633,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "dependencies": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - } - }, - "node_modules/devcert/node_modules/@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "node_modules/devcert/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/devcert/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", @@ -8769,15 +8802,22 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", + "license": "ISC" }, "node_modules/emoji-regex": { "version": "9.2.2", @@ -8910,9 +8950,10 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -8954,11 +8995,6 @@ "node": ">=4" } }, - "node_modules/eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "node_modules/equivalent-key-map": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/equivalent-key-map/-/equivalent-key-map-0.2.2.tgz", @@ -9171,9 +9207,10 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -10236,6 +10273,34 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -10503,9 +10568,9 @@ } }, "node_modules/gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -10518,6 +10583,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -10568,7 +10634,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -10592,7 +10657,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -10627,7 +10692,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -10668,7 +10733,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -10773,9 +10838,9 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==", "license": "MIT", "engines": { "node": ">=14.15.0" @@ -11123,9 +11188,9 @@ } }, "node_modules/gatsby-source-wordpress": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.14.0.tgz", - "integrity": "sha512-ZW+RS/bx6w7l3D597fYVpDsjhkOKcM0RBtf/0HRL1hGGtAYZLciivQcB+f9ydej44bNXTTb06cRNgNC4kS3dlA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.15.0.tgz", + "integrity": "sha512-p66kQFqevlmu6JepGP5sydkZn93Qs2oNZsd5CPRscfJYoMqhZwluStbf7A4ET4ECG+b4D1SSIVn+kGzrAQsruA==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.20.13", @@ -11316,9 +11381,9 @@ } }, "node_modules/gatsby/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -11416,14 +11481,6 @@ "node": ">=6" } }, - "node_modules/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", - "engines": { - "node": ">=4" - } - }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -11499,7 +11556,8 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" }, "node_modules/global-modules": { "version": "2.0.0", @@ -12664,14 +12722,6 @@ "tslib": "^2.0.3" } }, - "node_modules/is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "dependencies": { - "punycode": "^2.1.1" - } - }, "node_modules/is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -12727,11 +12777,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -12754,6 +12799,21 @@ "url": "https://github.com/sponsors/dmonad" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -13413,6 +13473,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -13493,20 +13562,21 @@ } }, "node_modules/multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", + "license": "MIT", "dependencies": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 10.16.0" } }, "node_modules/mute-stream": { @@ -13580,11 +13650,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -13740,9 +13805,10 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -14128,6 +14194,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/package-json/node_modules/@sindresorhus/is": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", @@ -14356,76 +14428,6 @@ "tslib": "^2.0.3" } }, - "node_modules/password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "dependencies": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - } - }, - "node_modules/password-prompt/node_modules/cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/password-prompt/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/password-prompt/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/password-prompt/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -14483,6 +14485,28 @@ "node": ">=0.10.0" } }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -14514,9 +14538,10 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -15244,19 +15269,6 @@ "node": ">=8" } }, - "node_modules/prebuild-install/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/prebuild-install/node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -15335,11 +15347,6 @@ "stream-parser": "~0.3.1" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -15877,24 +15884,19 @@ } }, "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, "node_modules/readable-web-to-node-stream": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", @@ -15910,19 +15912,6 @@ "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -16340,17 +16329,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -17078,19 +17056,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/simple-peer/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/simple-swizzle": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", @@ -17439,6 +17404,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -17536,6 +17522,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -17666,11 +17665,6 @@ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==" }, - "node_modules/sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -17867,12 +17861,13 @@ } }, "node_modules/terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "license": "BSD-2-Clause", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -17884,15 +17879,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -17916,6 +17912,34 @@ } } }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -17929,10 +17953,36 @@ "node": ">= 10.13.0" } }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } @@ -18262,7 +18312,8 @@ "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", @@ -18398,9 +18449,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "funding": [ { "type": "opencollective", @@ -18415,9 +18466,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -18646,9 +18698,10 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -18668,33 +18721,33 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -18828,6 +18881,65 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -18956,6 +19068,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -20911,6 +21041,52 @@ "heap": ">= 0.2.0" } }, + "@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "requires": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==" + }, "@floating-ui/core": { "version": "1.5.3", "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.3.tgz", @@ -21398,6 +21574,59 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -21418,38 +21647,37 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } } } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@lezer/common": { @@ -22014,6 +22242,12 @@ "nullthrows": "^1.1.1" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -22419,11 +22653,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -22437,11 +22666,6 @@ "@types/node": "*" } }, - "@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -22452,32 +22676,18 @@ } }, "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" }, "@types/gradient-parser": { "version": "0.1.3", @@ -22520,24 +22730,6 @@ "keyv": "*" } }, - "@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "requires": { - "@types/node": "*" - } - }, "@types/mousetrap": { "version": "1.6.10", "resolved": "https://registry.npmjs.org/@types/mousetrap/-/mousetrap-1.6.10.tgz", @@ -22597,15 +22789,6 @@ "@types/node": "*" } }, - "@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "requires": { - "@types/glob": "*", - "@types/node": "*" - } - }, "@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -22624,11 +22807,6 @@ "@types/node": "*" } }, - "@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -22814,133 +22992,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "requires": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -23710,14 +23888,9 @@ } }, "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" - }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==" + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" }, "acorn-jsx": { "version": "5.3.2", @@ -23802,11 +23975,6 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - }, "ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -23839,11 +24007,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -24294,18 +24457,6 @@ "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "bluebird": { @@ -24390,14 +24541,14 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" } }, "bser": { @@ -24533,9 +24684,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==" + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==" }, "capital-case": { "version": "1.0.4", @@ -24899,11 +25050,6 @@ "delayed-stream": "~1.0.0" } }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -24982,13 +25128,13 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -25080,11 +25226,6 @@ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz", "integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==" }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -25510,56 +25651,6 @@ } } }, - "devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "requires": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", @@ -25690,15 +25781,20 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==" }, "emoji-regex": { "version": "9.2.2", @@ -25806,9 +25902,9 @@ "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" }, "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -25832,11 +25928,6 @@ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==" }, - "eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "equivalent-key-map": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/equivalent-key-map/-/equivalent-key-map-0.2.2.tgz", @@ -26016,9 +26107,9 @@ } }, "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" }, "escape-html": { "version": "1.0.3", @@ -26792,6 +26883,22 @@ "is-callable": "^1.1.3" } }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + } + }, "fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -26971,9 +27078,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -26984,6 +27091,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -27034,7 +27142,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -27058,7 +27165,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -27094,7 +27201,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -27135,7 +27242,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -27189,9 +27296,9 @@ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "requires": { "ms": "^2.1.3" } @@ -27293,9 +27400,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==" + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==" }, "gatsby-legacy-polyfills": { "version": "3.14.0", @@ -27520,9 +27627,9 @@ } }, "gatsby-source-wordpress": { - "version": "7.14.0", - "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.14.0.tgz", - "integrity": "sha512-ZW+RS/bx6w7l3D597fYVpDsjhkOKcM0RBtf/0HRL1hGGtAYZLciivQcB+f9ydej44bNXTTb06cRNgNC4kS3dlA==", + "version": "7.15.0", + "resolved": "https://registry.npmjs.org/gatsby-source-wordpress/-/gatsby-source-wordpress-7.15.0.tgz", + "integrity": "sha512-p66kQFqevlmu6JepGP5sydkZn93Qs2oNZsd5CPRscfJYoMqhZwluStbf7A4ET4ECG+b4D1SSIVn+kGzrAQsruA==", "requires": { "@babel/runtime": "^7.20.13", "@rematch/core": "^2.2.0", @@ -27656,11 +27763,6 @@ "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -28510,14 +28612,6 @@ "tslib": "^2.0.3" } }, - "is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "requires": { - "punycode": "^2.1.1" - } - }, "is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -28555,11 +28649,6 @@ "system-architecture": "^0.1.0" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -28575,6 +28664,15 @@ "resolved": "https://registry.npmjs.org/isomorphic.js/-/isomorphic.js-0.2.5.tgz", "integrity": "sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==" }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -29087,6 +29185,11 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -29152,17 +29255,17 @@ } }, "multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", "requires": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" } }, "mute-stream": { @@ -29215,11 +29318,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -29332,9 +29430,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" }, "normalize-path": { "version": "3.0.0", @@ -29676,6 +29774,11 @@ } } }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -29745,60 +29848,6 @@ "tslib": "^2.0.3" } }, - "password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "requires": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, "path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -29841,6 +29890,22 @@ "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==" }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -29862,9 +29927,9 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -30308,16 +30373,6 @@ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==" }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, "tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -30377,11 +30432,6 @@ "stream-parser": "~0.3.1" } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -30765,24 +30815,13 @@ } }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, "readable-web-to-node-stream": { @@ -30791,18 +30830,6 @@ "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "requires": { "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "readdirp": { @@ -31118,14 +31145,6 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -31646,16 +31665,6 @@ "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } } } }, @@ -31955,6 +31964,23 @@ } } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, "string.prototype.includes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", @@ -32019,6 +32045,14 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -32112,11 +32146,6 @@ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz", "integrity": "sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==" }, - "sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -32268,12 +32297,12 @@ } }, "terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -32286,17 +32315,36 @@ } }, "terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "requires": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -32307,10 +32355,26 @@ "supports-color": "^8.0.0" } }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "requires": { "randombytes": "^2.1.0" } @@ -32651,12 +32715,12 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" } }, "upper-case": { @@ -32783,9 +32847,9 @@ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -32802,36 +32866,75 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -33012,6 +33115,16 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/starters/gatsby-starter-wordpress-blog/package.json b/starters/gatsby-starter-wordpress-blog/package.json index 4cb40cbcb4605..be21dcab441e2 100644 --- a/starters/gatsby-starter-wordpress-blog/package.json +++ b/starters/gatsby-starter-wordpress-blog/package.json @@ -11,11 +11,11 @@ "@fontsource/merriweather": "^5.0.8", "@fontsource-variable/montserrat": "^5.0.17", "@wordpress/block-library": "^8.28.1", - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "gatsby-plugin-image": "^3.14.0", "gatsby-plugin-manifest": "^5.14.0", "gatsby-plugin-sharp": "^5.14.0", - "gatsby-source-wordpress": "^7.14.0", + "gatsby-source-wordpress": "^7.15.0", "gatsby-transformer-sharp": "^5.14.0", "html-react-parser": "^4.2.10", "lodash": "^4.17.21", diff --git a/starters/hello-world/package-lock.json b/starters/hello-world/package-lock.json index ba435ba88d49b..144882d0292a2 100644 --- a/starters/hello-world/package-lock.json +++ b/starters/hello-world/package-lock.json @@ -9,7 +9,7 @@ "version": "0.1.0", "license": "0BSD", "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "react": "^18.2.0", "react-dom": "^18.2.0" } @@ -2010,6 +2010,67 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, + "node_modules/@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "license": "MIT", + "dependencies": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + } + }, + "node_modules/@expo/devcert/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@expo/devcert/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/devcert/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==", + "license": "MIT" + }, "node_modules/@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -2530,6 +2591,96 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2559,39 +2710,39 @@ } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@lezer/common": { @@ -3515,6 +3666,16 @@ "@parcel/core": "^2.8.3" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -3720,11 +3881,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "node_modules/@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "node_modules/@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -3738,11 +3894,6 @@ "@types/node": "*" } }, - "node_modules/@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "node_modules/@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -3753,32 +3904,20 @@ } }, "node_modules/@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "node_modules/@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "dependencies": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "license": "MIT" }, "node_modules/@types/http-cache-semantics": { "version": "4.0.1", @@ -3812,24 +3951,6 @@ "keyv": "*" } }, - "node_modules/@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "node_modules/@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "dependencies": { - "@types/node": "*" - } - }, "node_modules/@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", @@ -3871,15 +3992,6 @@ "@types/node": "*" } }, - "node_modules/@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "dependencies": { - "@types/glob": "*", - "@types/node": "*" - } - }, "node_modules/@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -3890,11 +4002,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "node_modules/@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "node_modules/@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -4135,145 +4242,162 @@ } }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" }, "node_modules/abortcontroller-polyfill": { "version": "1.7.5", @@ -4293,9 +4417,10 @@ } }, "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -4303,14 +4428,6 @@ "node": ">=0.4.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "peerDependencies": { - "acorn": "^8" - } - }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", @@ -4429,14 +4546,6 @@ "node": ">=6" } }, - "node_modules/ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", - "engines": { - "node": ">=4" - } - }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -4487,11 +4596,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "node_modules/application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -5126,20 +5230,6 @@ "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/bluebird": { "version": "3.7.2", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", @@ -5236,9 +5326,9 @@ } }, "node_modules/browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "funding": [ { "type": "opencollective", @@ -5253,11 +5343,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" }, "bin": { "browserslist": "cli.js" @@ -5430,9 +5521,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==", + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==", "funding": [ { "type": "opencollective", @@ -5446,7 +5537,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/capital-case": { "version": "1.0.4", @@ -5859,11 +5951,6 @@ "node": ">= 0.8" } }, - "node_modules/command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -5942,16 +6029,17 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "engines": [ - "node >= 0.8" + "node >= 6.0" ], + "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -6073,11 +6161,6 @@ "url": "https://opencollective.com/core-js" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "node_modules/cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -6682,57 +6765,6 @@ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "dependencies": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - } - }, - "node_modules/devcert/node_modules/@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "node_modules/devcert/node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/devcert/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -6852,15 +6884,22 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "node_modules/electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==", + "license": "ISC" }, "node_modules/emoji-regex": { "version": "9.2.2", @@ -6974,9 +7013,10 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -7015,11 +7055,6 @@ "node": ">=4" } }, - "node_modules/eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -7222,9 +7257,10 @@ } }, "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", "engines": { "node": ">=6" } @@ -8251,6 +8287,34 @@ "is-callable": "^1.1.3" } }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -8481,9 +8545,9 @@ } }, "node_modules/gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -8496,6 +8560,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -8546,7 +8611,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -8570,7 +8634,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -8605,7 +8669,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -8646,7 +8710,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -8751,9 +8815,9 @@ } }, "node_modules/gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==", + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==", "license": "MIT", "engines": { "node": ">=14.15.0" @@ -9050,9 +9114,9 @@ } }, "node_modules/gatsby/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils/node_modules/@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" @@ -9226,9 +9290,9 @@ } }, "node_modules/gatsby/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -9325,14 +9389,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==", - "engines": { - "node": ">=4" - } - }, "node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -9400,7 +9456,8 @@ "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "license": "BSD-2-Clause" }, "node_modules/global-modules": { "version": "2.0.0", @@ -10470,14 +10527,6 @@ "tslib": "^2.0.3" } }, - "node_modules/is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "dependencies": { - "punycode": "^2.1.1" - } - }, "node_modules/is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -10533,11 +10582,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -10551,6 +10595,21 @@ "node": ">=0.10.0" } }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, "node_modules/javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -11146,6 +11205,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -11211,20 +11279,21 @@ } }, "node_modules/multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", + "license": "MIT", "dependencies": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" }, "engines": { - "node": ">= 6.0.0" + "node": ">= 10.16.0" } }, "node_modules/mute-stream": { @@ -11283,11 +11352,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "node_modules/nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -11376,9 +11440,10 @@ } }, "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -11720,6 +11785,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/package-json/node_modules/@sindresorhus/is": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.3.0.tgz", @@ -11925,76 +11996,6 @@ "tslib": "^2.0.3" } }, - "node_modules/password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "dependencies": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - } - }, - "node_modules/password-prompt/node_modules/cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", - "dependencies": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "engines": { - "node": ">=4.8" - } - }, - "node_modules/password-prompt/node_modules/path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/password-prompt/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/password-prompt/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/password-prompt/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -12052,6 +12053,28 @@ "node": ">=0.10.0" } }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -12083,9 +12106,10 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -12779,20 +12803,6 @@ "node": ">=8" } }, - "node_modules/prebuild-install/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/prebuild-install/node_modules/tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -12838,11 +12848,6 @@ "renderkid": "^2.0.4" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -13221,24 +13226,19 @@ } }, "node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, "node_modules/readable-web-to-node-stream": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", @@ -13254,19 +13254,6 @@ "url": "https://github.com/sponsors/Borewit" } }, - "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -13580,17 +13567,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -14371,6 +14347,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -14468,6 +14465,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -14553,11 +14563,6 @@ "postcss": "^8.2.15" } }, - "node_modules/sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -14688,12 +14693,13 @@ } }, "node_modules/terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", + "license": "BSD-2-Clause", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -14705,15 +14711,16 @@ } }, "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", + "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" @@ -14737,6 +14744,34 @@ } } }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/terser-webpack-plugin/node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -14750,10 +14785,36 @@ "node": ">= 10.13.0" } }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } @@ -15066,7 +15127,8 @@ "node_modules/typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", @@ -15215,9 +15277,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "funding": [ { "type": "opencollective", @@ -15232,9 +15294,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" @@ -15349,9 +15412,10 @@ } }, "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", + "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -15371,33 +15435,33 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { @@ -15531,6 +15595,65 @@ "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, + "node_modules/webpack/node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack/node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "license": "ISC" + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -15641,6 +15764,24 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", @@ -17323,6 +17464,52 @@ } } }, + "@expo/devcert": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@expo/devcert/-/devcert-1.2.0.tgz", + "integrity": "sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA==", + "requires": { + "@expo/sudo-prompt": "^9.3.1", + "debug": "^3.1.0", + "glob": "^10.4.2" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + } + }, + "minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "requires": { + "brace-expansion": "^2.0.1" + } + } + } + }, + "@expo/sudo-prompt": { + "version": "9.3.2", + "resolved": "https://registry.npmjs.org/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz", + "integrity": "sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw==" + }, "@gatsbyjs/parcel-namer-relative-to-cwd": { "version": "2.14.0", "resolved": "https://registry.npmjs.org/@gatsbyjs/parcel-namer-relative-to-cwd/-/parcel-namer-relative-to-cwd-2.14.0.tgz", @@ -17771,6 +17958,59 @@ "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==" + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -17791,38 +18031,37 @@ "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.10", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.10.tgz", + "integrity": "sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==", "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } } } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==" }, "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@lezer/common": { @@ -18387,6 +18626,12 @@ "nullthrows": "^1.1.1" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true + }, "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.10", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", @@ -18527,11 +18772,6 @@ "resolved": "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.8.1.tgz", "integrity": "sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg==" }, - "@types/configstore": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz", - "integrity": "sha512-YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ==" - }, "@types/cookie": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.4.1.tgz", @@ -18545,11 +18785,6 @@ "@types/node": "*" } }, - "@types/debug": { - "version": "0.0.30", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz", - "integrity": "sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ==" - }, "@types/eslint": { "version": "7.29.0", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.29.0.tgz", @@ -18560,32 +18795,18 @@ } }, "@types/eslint-scope": { - "version": "3.7.4", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.4.tgz", - "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "requires": { "@types/eslint": "*", "@types/estree": "*" } }, "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q==" - }, - "@types/glob": { - "version": "5.0.37", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz", - "integrity": "sha512-ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg==", - "requires": { - "@types/minimatch": "*", - "@types/node": "*" - } + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" }, "@types/http-cache-semantics": { "version": "4.0.1", @@ -18618,24 +18839,6 @@ "keyv": "*" } }, - "@types/lodash": { - "version": "4.14.187", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.187.tgz", - "integrity": "sha512-MrO/xLXCaUgZy3y96C/iOsaIqZSeupyTImKClHunL5GrmaiII2VwvWmLBu2hwa0Kp0sV19CsyjtrTc/Fx8rg/A==" - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==" - }, - "@types/mkdirp": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz", - "integrity": "sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg==", - "requires": { - "@types/node": "*" - } - }, "@types/node": { "version": "18.11.9", "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", @@ -18677,15 +18880,6 @@ "@types/node": "*" } }, - "@types/rimraf": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz", - "integrity": "sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==", - "requires": { - "@types/glob": "*", - "@types/node": "*" - } - }, "@types/scheduler": { "version": "0.16.2", "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", @@ -18696,11 +18890,6 @@ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==" }, - "@types/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ==" - }, "@types/yoga-layout": { "version": "1.9.2", "resolved": "https://registry.npmjs.org/@types/yoga-layout/-/yoga-layout-1.9.2.tgz", @@ -18849,133 +19038,133 @@ } }, "@webassemblyjs/ast": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", - "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "requires": { - "@webassemblyjs/helper-numbers": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", - "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==" }, "@webassemblyjs/helper-api-error": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", - "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==" }, "@webassemblyjs/helper-buffer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", - "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==" + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==" }, "@webassemblyjs/helper-numbers": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", - "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", - "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==" }, "@webassemblyjs/helper-wasm-section": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", - "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, "@webassemblyjs/ieee754": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", - "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "requires": { "@xtuc/ieee754": "^1.2.0" } }, "@webassemblyjs/leb128": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", - "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "requires": { "@xtuc/long": "4.2.2" } }, "@webassemblyjs/utf8": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", - "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==" }, "@webassemblyjs/wasm-edit": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", - "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/helper-wasm-section": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-opt": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6", - "@webassemblyjs/wast-printer": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, "@webassemblyjs/wasm-gen": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", - "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wasm-opt": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", - "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-buffer": "1.11.6", - "@webassemblyjs/wasm-gen": "1.11.6", - "@webassemblyjs/wasm-parser": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, "@webassemblyjs/wasm-parser": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", - "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "requires": { - "@webassemblyjs/ast": "1.11.6", - "@webassemblyjs/helper-api-error": "1.11.6", - "@webassemblyjs/helper-wasm-bytecode": "1.11.6", - "@webassemblyjs/ieee754": "1.11.6", - "@webassemblyjs/leb128": "1.11.6", - "@webassemblyjs/utf8": "1.11.6" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, "@webassemblyjs/wast-printer": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", - "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "requires": { - "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, @@ -19004,15 +19193,9 @@ } }, "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" - }, - "acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "requires": {} + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" }, "acorn-jsx": { "version": "5.3.2", @@ -19099,11 +19282,6 @@ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" }, - "ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" - }, "ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", @@ -19136,11 +19314,6 @@ "resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz", "integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==" }, - "application-config-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz", - "integrity": "sha512-lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q==" - }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -19594,18 +19767,6 @@ "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "bluebird": { @@ -19690,14 +19851,14 @@ } }, "browserslist": { - "version": "4.21.10", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.10.tgz", - "integrity": "sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==", + "version": "4.25.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", + "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", "requires": { - "caniuse-lite": "^1.0.30001517", - "electron-to-chromium": "^1.4.477", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.11" + "caniuse-lite": "^1.0.30001733", + "electron-to-chromium": "^1.5.199", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.3" } }, "bser": { @@ -19817,9 +19978,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001522", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001522.tgz", - "integrity": "sha512-TKiyTVZxJGhsTszLuzb+6vUZSjVOAhClszBr2Ta2k9IwtNBT/4dzmL6aywt0HCgEZlmwJzXJd8yNiob6HgwTRg==" + "version": "1.0.30001733", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001733.tgz", + "integrity": "sha512-e4QKw/O2Kavj2VQTKZWrwzkt3IxOmIlU6ajRb6LP64LHpBo1J67k2Hi4Vu/TgJWsNtynurfS0uK3MaUTCPfu5Q==" }, "capital-case": { "version": "1.0.4", @@ -20110,11 +20271,6 @@ "delayed-stream": "~1.0.0" } }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==" - }, "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -20183,13 +20339,13 @@ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", "requires": { "buffer-from": "^1.0.0", "inherits": "^2.0.3", - "readable-stream": "^2.2.2", + "readable-stream": "^3.0.2", "typedarray": "^0.0.6" } }, @@ -20281,11 +20437,6 @@ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz", "integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==" }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, "cors": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", @@ -20693,56 +20844,6 @@ } } }, - "devcert": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/devcert/-/devcert-1.2.2.tgz", - "integrity": "sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA==", - "requires": { - "@types/configstore": "^2.1.1", - "@types/debug": "^0.0.30", - "@types/get-port": "^3.2.0", - "@types/glob": "^5.0.34", - "@types/lodash": "^4.14.92", - "@types/mkdirp": "^0.5.2", - "@types/node": "^8.5.7", - "@types/rimraf": "^2.0.2", - "@types/tmp": "^0.0.33", - "application-config-path": "^0.1.0", - "command-exists": "^1.2.4", - "debug": "^3.1.0", - "eol": "^0.9.1", - "get-port": "^3.2.0", - "glob": "^7.1.2", - "is-valid-domain": "^0.1.6", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "password-prompt": "^1.0.4", - "rimraf": "^2.6.2", - "sudo-prompt": "^8.2.0", - "tmp": "^0.0.33", - "tslib": "^1.10.0" - }, - "dependencies": { - "@types/node": { - "version": "8.10.66", - "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz", - "integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" - } - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } - } - }, "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", @@ -20832,15 +20933,20 @@ "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, + "eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" }, "electron-to-chromium": { - "version": "1.4.500", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.500.tgz", - "integrity": "sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==" + "version": "1.5.199", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.199.tgz", + "integrity": "sha512-3gl0S7zQd88kCAZRO/DnxtBKuhMO4h0EaQIN3YgZfV6+pW+5+bf2AdQeHNESCoaQqo/gjGVYEf2YM4O5HJQqpQ==" }, "emoji-regex": { "version": "9.2.2", @@ -20930,9 +21036,9 @@ "integrity": "sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==" }, "enhanced-resolve": { - "version": "5.15.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", - "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "version": "5.18.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz", + "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==", "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -20956,11 +21062,6 @@ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.10.0.tgz", "integrity": "sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==" }, - "eol": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz", - "integrity": "sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==" - }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -21130,9 +21231,9 @@ } }, "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" }, "escape-html": { "version": "1.0.3", @@ -21875,6 +21976,22 @@ "is-callable": "^1.1.3" } }, + "foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "requires": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" + } + } + }, "fork-ts-checker-webpack-plugin": { "version": "6.5.2", "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", @@ -22028,9 +22145,9 @@ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "gatsby": { - "version": "5.14.1", - "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.1.tgz", - "integrity": "sha512-xumIbDl0bk/Het+9wDQETNSHtkobXaeUQTciwzbT42RW/zIoPkKTjNzdDrWOBzzpmR0RU/qEnLa0udDhzS01Ww==", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/gatsby/-/gatsby-5.14.6.tgz", + "integrity": "sha512-pX3afgemwTrojzstA41b7CtGL9VqIXYzXqAZmkxD0L4GuiFD0CpWyVRVkaDK5fsu2bSSzIzYlmy1CuM9KdfnLg==", "requires": { "@babel/code-frame": "^7.18.6", "@babel/core": "^7.20.12", @@ -22041,6 +22158,7 @@ "@babel/traverse": "^7.20.13", "@babel/types": "^7.20.7", "@builder.io/partytown": "^0.7.5", + "@expo/devcert": "^1.2.0", "@gatsbyjs/reach-router": "^2.0.1", "@gatsbyjs/webpack-hot-middleware": "^2.25.3", "@graphql-codegen/add": "^3.2.3", @@ -22091,7 +22209,6 @@ "debug": "^4.3.4", "deepmerge": "^4.3.1", "detect-port": "^1.5.1", - "devcert": "^1.2.2", "dotenv": "^8.6.0", "enhanced-resolve": "^5.15.0", "error-stack-parser": "^2.1.4", @@ -22115,7 +22232,7 @@ "fs-extra": "^11.2.0", "gatsby-cli": "^5.14.0", "gatsby-core-utils": "^4.14.0", - "gatsby-graphiql-explorer": "^3.14.0", + "gatsby-graphiql-explorer": "^3.14.1", "gatsby-legacy-polyfills": "^3.14.0", "gatsby-link": "^5.14.1", "gatsby-page-utils": "^3.14.0", @@ -22151,7 +22268,7 @@ "mini-css-extract-plugin": "1.6.2", "mitt": "^1.2.0", "moment": "^2.29.4", - "multer": "^1.4.5-lts.1", + "multer": "^2.0.1", "node-fetch": "^2.6.11", "node-html-parser": "^5.4.2", "normalize-path": "^3.0.0", @@ -22192,7 +22309,7 @@ "type-of": "^2.0.1", "url-loader": "^4.1.1", "uuid": "^8.3.2", - "webpack": "^5.88.1", + "webpack": "~5.98.0", "webpack-dev-middleware": "^5.3.4", "webpack-merge": "^5.9.0", "webpack-stats-plugin": "^1.1.3", @@ -22245,9 +22362,9 @@ }, "dependencies": { "@eslint-community/eslint-utils": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", - "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", + "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", "requires": { "eslint-visitor-keys": "^3.4.3" } @@ -22349,9 +22466,9 @@ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" }, "debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "requires": { "ms": "^2.1.3" } @@ -22458,9 +22575,9 @@ } }, "gatsby-graphiql-explorer": { - "version": "3.14.0", - "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.0.tgz", - "integrity": "sha512-t+PpMu+6GkCdyGDw8S4pd1FBZVwFdpn6Jb2BLZtNJ2z1hOSxHKGoZO1sW2mwZ8/H1VuiSPb2XtXwHYo5CcYgAg==" + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/gatsby-graphiql-explorer/-/gatsby-graphiql-explorer-3.14.1.tgz", + "integrity": "sha512-QC6XSIIrg4wp5Tb4qE7dkMpC+XDQDDIkQ3dkxajLn8P02tHHAUDLYlJGVHKILp5QQRlTXCPqk4AFZwh21NtJBw==" }, "gatsby-legacy-polyfills": { "version": "3.14.0", @@ -22619,11 +22736,6 @@ "hasown": "^2.0.0" } }, - "get-port": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", - "integrity": "sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==" - }, "get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", @@ -23384,14 +23496,6 @@ "tslib": "^2.0.3" } }, - "is-valid-domain": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz", - "integrity": "sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg==", - "requires": { - "punycode": "^2.1.1" - } - }, "is-valid-path": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-valid-path/-/is-valid-path-0.1.1.tgz", @@ -23429,11 +23533,6 @@ "system-architecture": "^0.1.0" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", @@ -23444,6 +23543,15 @@ "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" }, + "jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "javascript-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz", @@ -23910,6 +24018,11 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" }, + "minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" + }, "mitt": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-1.2.0.tgz", @@ -23962,17 +24075,17 @@ } }, "multer": { - "version": "1.4.5-lts.1", - "resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.1.tgz", - "integrity": "sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/multer/-/multer-2.0.2.tgz", + "integrity": "sha512-u7f2xaZ/UG8oLXHvtF/oWTRvT44p9ecwBBqTwgJVq0+4BW1g8OW01TyMEGWBHbyMOYVHXslaut7qEQ1meATXgw==", "requires": { "append-field": "^1.0.0", - "busboy": "^1.0.0", - "concat-stream": "^1.5.2", - "mkdirp": "^0.5.4", + "busboy": "^1.6.0", + "concat-stream": "^2.0.0", + "mkdirp": "^0.5.6", "object-assign": "^4.1.1", - "type-is": "^1.6.4", - "xtend": "^4.0.0" + "type-is": "^1.6.18", + "xtend": "^4.0.2" } }, "mute-stream": { @@ -24015,11 +24128,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" }, - "nice-try": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", - "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" - }, "no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", @@ -24080,9 +24188,9 @@ "integrity": "sha512-jY5dPJzw6NHd/KPSfPKJ+IHoFS81/tJ43r34ZeNMXGzCOM8jwQDCD12HYayKIB6MuznrnqIYy2e891NA2g0ibA==" }, "node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==" + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==" }, "normalize-path": { "version": "3.0.0", @@ -24392,6 +24500,11 @@ } } }, + "package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -24444,60 +24557,6 @@ "tslib": "^2.0.3" } }, - "password-prompt": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz", - "integrity": "sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA==", - "requires": { - "ansi-escapes": "^3.1.0", - "cross-spawn": "^6.0.5" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.6.tgz", - "integrity": "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==", - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, "path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", @@ -24540,6 +24599,22 @@ "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==" }, + "path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -24561,9 +24636,9 @@ "integrity": "sha512-rxJOljMuWtYlvREBmd6TZYanfcPhNUKtGDZBjBBS8WG1dpN2iwPsRJZgQqN/OtJuiQckdRFOfzogqJClTrsi7g==" }, "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "picomatch": { "version": "2.3.1", @@ -24991,16 +25066,6 @@ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==" }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, "tar-fs": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", @@ -25040,11 +25105,6 @@ "renderkid": "^2.0.4" } }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", @@ -25323,24 +25383,13 @@ } }, "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, "readable-web-to-node-stream": { @@ -25349,18 +25398,6 @@ "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", "requires": { "readable-stream": "^3.6.0" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } } }, "readdirp": { @@ -25601,14 +25638,6 @@ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, "run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", @@ -26195,6 +26224,23 @@ } } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + } + } + }, "string.prototype.includes": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz", @@ -26259,6 +26305,14 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", @@ -26309,11 +26363,6 @@ "postcss-selector-parser": "^6.0.4" } }, - "sudo-prompt": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz", - "integrity": "sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==" - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -26411,12 +26460,12 @@ } }, "terser": { - "version": "5.17.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.4.tgz", - "integrity": "sha512-jcEKZw6UPrgugz/0Tuk/PVyLAPfMBJf5clnGueo45wTweoV8yh7Q7PEkhkJ5uuUbC7zAxEcG3tqNr1bstkQ8nw==", + "version": "5.43.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.43.1.tgz", + "integrity": "sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==", "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.14.0", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, @@ -26429,17 +26478,36 @@ } }, "terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "version": "5.3.14", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", + "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", "requires": { - "@jridgewell/trace-mapping": "^0.3.17", + "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "schema-utils": "^4.3.0", + "serialize-javascript": "^6.0.2", + "terser": "^5.31.1" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, "jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", @@ -26450,10 +26518,26 @@ "supports-color": "^8.0.0" } }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "requires": { "randombytes": "^2.1.0" } @@ -26785,12 +26869,12 @@ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "update-browserslist-db": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", - "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.1" } }, "upper-case": { @@ -26868,9 +26952,9 @@ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.4.tgz", + "integrity": "sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -26887,36 +26971,75 @@ "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "webpack": { - "version": "5.88.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", - "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", - "requires": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "version": "5.98.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", + "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", + "requires": { + "@types/eslint-scope": "^3.7.7", + "@types/estree": "^1.0.6", + "@webassemblyjs/ast": "^1.14.1", + "@webassemblyjs/wasm-edit": "^1.14.1", + "@webassemblyjs/wasm-parser": "^1.14.1", + "acorn": "^8.14.0", + "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.15.0", + "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", + "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.2.0", + "schema-utils": "^4.3.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", + "terser-webpack-plugin": "^5.3.11", + "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "dependencies": { + "ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "requires": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "schema-utils": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", + "integrity": "sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==", + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", @@ -27082,6 +27205,16 @@ "strip-ansi": "^6.0.0" } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/starters/hello-world/package.json b/starters/hello-world/package.json index 7d92469fc86f4..9a4ffd2a628d6 100644 --- a/starters/hello-world/package.json +++ b/starters/hello-world/package.json @@ -13,7 +13,7 @@ "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" }, "dependencies": { - "gatsby": "^5.14.1", + "gatsby": "^5.14.6", "react": "^18.2.0", "react-dom": "^18.2.0" }, diff --git a/yarn.lock b/yarn.lock index 02f2062901e65..2597413b70962 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1644,6 +1644,20 @@ dependencies: heap ">= 0.2.0" +"@expo/devcert@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@expo/devcert/-/devcert-1.2.0.tgz#7b32c2d959e36baaa0649433395e5170c808b44f" + integrity sha512-Uilcv3xGELD5t/b0eM4cxBFEKQRIivB3v7i+VhWLV/gL98aw810unLKKJbGAxAIhY6Ipyz8ChWibFsKFXYwstA== + dependencies: + "@expo/sudo-prompt" "^9.3.1" + debug "^3.1.0" + glob "^10.4.2" + +"@expo/sudo-prompt@^9.3.1": + version "9.3.2" + resolved "https://registry.yarnpkg.com/@expo/sudo-prompt/-/sudo-prompt-9.3.2.tgz#0fd2813402a42988e49145cab220e25bea74b308" + integrity sha512-HHQigo3rQWKMDzYDLkubN5WQOYXJJE2eNqIQC2axC2iO3mHdwnIR7FgZVvHWtBwAdzBgAP0ECp8KqS8TiMKvgw== + "@floating-ui/core@^1.3.1": version "1.3.1" resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.3.1.tgz#4d795b649cc3b1cbb760d191c80dcb4353c9a366" @@ -4632,10 +4646,6 @@ resolved "https://registry.yarnpkg.com/@types/common-tags/-/common-tags-1.8.1.tgz#a5a49ca5ebbb58e0f8947f3ec98950c8970a68a9" integrity sha512-20R/mDpKSPWdJs5TOpz3e7zqbeCNuMCPhV7Yndk9KU2Rbij2r5W4RzwDPkzC+2lzUqXYu9rFzTktCBnDjHuNQg== -"@types/configstore@^2.1.1": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@types/configstore/-/configstore-2.1.1.tgz#cd1e8553633ad3185c3f2f239ecff5d2643e92b6" - "@types/configstore@^4.0.0": version "4.0.0" resolved "https://registry.yarnpkg.com/@types/configstore/-/configstore-4.0.0.tgz#cb718f9507e9ee73782f40d07aaca1cd747e36fa" @@ -4660,11 +4670,6 @@ dependencies: "@types/node" "*" -"@types/debug@^0.0.30": - version "0.0.30" - resolved "https://registry.yarnpkg.com/@types/debug/-/debug-0.0.30.tgz#dc1e40f7af3b9c815013a7860e6252f6352a84df" - integrity sha512-orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ== - "@types/debug@^4.0.0", "@types/debug@^4.1.7": version "4.1.7" resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82" @@ -4759,12 +4764,7 @@ dependencies: "@types/node" "*" -"@types/get-port@^3.2.0": - version "3.2.0" - resolved "https://registry.yarnpkg.com/@types/get-port/-/get-port-3.2.0.tgz#f9e0a11443cc21336470185eae3dfba4495d29bc" - integrity sha512-TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q== - -"@types/glob@*", "@types/glob@^7.1.1": +"@types/glob@^7.1.1": version "7.1.1" resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== @@ -4773,15 +4773,6 @@ "@types/minimatch" "*" "@types/node" "*" -"@types/glob@^5.0.34": - version "5.0.36" - resolved "https://registry.yarnpkg.com/@types/glob/-/glob-5.0.36.tgz#0c80a9c8664fc7d19781de229f287077fd622cb2" - integrity sha512-KEzSKuP2+3oOjYYjujue6Z3Yqis5HKA1BsIC+jZ1v3lrRNdsqyNNtX0rQf6LSuI4DJJ2z5UV//zBZCcvM0xikg== - dependencies: - "@types/events" "*" - "@types/minimatch" "*" - "@types/node" "*" - "@types/graceful-fs@^4.1.3": version "4.1.5" resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" @@ -4904,7 +4895,7 @@ dependencies: "@types/node" "*" -"@types/lodash@^4.14.175", "@types/lodash@^4.14.195", "@types/lodash@^4.14.92": +"@types/lodash@^4.14.175", "@types/lodash@^4.14.195": version "4.14.195" resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.195.tgz#bafc975b252eb6cea78882ce8a7b6bf22a6de632" integrity sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg== @@ -4947,13 +4938,6 @@ resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== -"@types/mkdirp@^0.5.2": - version "0.5.2" - resolved "https://registry.yarnpkg.com/@types/mkdirp/-/mkdirp-0.5.2.tgz#503aacfe5cc2703d5484326b1b27efa67a339c1f" - integrity sha512-U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg== - dependencies: - "@types/node" "*" - "@types/ms@*": version "0.7.31" resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" @@ -4989,11 +4973,6 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== -"@types/node@^8.5.7": - version "8.10.59" - resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.59.tgz#9e34261f30183f9777017a13d185dfac6b899e04" - integrity sha512-8RkBivJrDCyPpBXhVZcjh7cQxVBSmRk9QM7hOketZzp6Tg79c0N8kkpAIito9bnJ3HCVCHVYz+KHTEbfQNfeVQ== - "@types/normalize-package-data@^2.4.0": version "2.4.0" resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e" @@ -5082,14 +5061,6 @@ dependencies: "@types/node" "*" -"@types/rimraf@^2.0.2": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@types/rimraf/-/rimraf-2.0.3.tgz#0199a46af106729ba14213fda7b981278d8c84f2" - integrity sha512-dZfyfL/u9l/oi984hEXdmAjX3JHry7TLWw43u1HQ8HhPv6KtfxnrZ3T/bleJ0GEvnk9t5sM7eePkgMqz3yBcGg== - dependencies: - "@types/glob" "*" - "@types/node" "*" - "@types/sax@^1.2.1": version "1.2.1" resolved "https://registry.yarnpkg.com/@types/sax/-/sax-1.2.1.tgz#e0248be936ece791a82db1a57f3fb5f7c87e8172" @@ -5159,11 +5130,6 @@ dependencies: "@types/estree" "*" -"@types/tmp@^0.0.33": - version "0.0.33" - resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.0.33.tgz#1073c4bc824754ae3d10cfab88ab0237ba964e4d" - integrity sha1-EHPEvIJHVK49EM+riKsCN7qWTk0= - "@types/tmp@^0.2.3": version "0.2.3" resolved "https://registry.yarnpkg.com/@types/tmp/-/tmp-0.2.3.tgz#908bfb113419fd6a42273674c00994d40902c165" @@ -5202,14 +5168,7 @@ "@types/source-list-map" "*" source-map "^0.6.1" -"@types/webpack-virtual-modules@^0.1.1": - version "0.1.1" - resolved "https://registry.yarnpkg.com/@types/webpack-virtual-modules/-/webpack-virtual-modules-0.1.1.tgz#3c3da7aef3c64c8536481efa2a61a086e50acd53" - integrity sha512-n7ibdZz0tef3XL4eerWv8Yak/s3ftp/m0bE7s0rQctk+eqPGBbdGyldV39FUsM1YPBCfW6hdWco5EF6iUd5AmA== - dependencies: - "@types/webpack" "^4" - -"@types/webpack@*", "@types/webpack@^4": +"@types/webpack@*": version "4.41.27" resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.27.tgz#f47da488c8037e7f1b2dbf2714fbbacb61ec0ffc" integrity sha512-wK/oi5gcHi72VMTbOaQ70VcDxSQ1uX8S2tukBK9ARuGXrYM/+u4ou73roc7trXDNmCxCoerE8zruQqX/wuHszA== @@ -6059,7 +6018,7 @@ ansi-colors@^4.1.1: resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== -ansi-escapes@^3.1.0, ansi-escapes@^3.2.0: +ansi-escapes@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" @@ -6180,11 +6139,6 @@ append-field@^1.0.0: resolved "https://registry.yarnpkg.com/append-field/-/append-field-1.0.0.tgz#1e3440e915f0b1203d23748e78edd7b9b5b43e56" integrity sha1-HjRA6RXwsSA9I3SOeO3XubW0PlY= -application-config-path@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/application-config-path/-/application-config-path-0.1.0.tgz#193c5f0a86541a4c66fba1e2dc38583362ea5e8f" - integrity sha1-GTxfCoZUGkxm+6Hi3DhYM2LqXo8= - aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" @@ -7344,7 +7298,7 @@ builtins@^5.0.0: dependencies: semver "^7.0.0" -busboy@^1.0.0: +busboy@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893" integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA== @@ -7608,15 +7562,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001565: - version "1.0.30001692" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001692.tgz" - integrity sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A== - -caniuse-lite@^1.0.30001688: - version "1.0.30001712" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001712.tgz#41ee150f12de11b5f57c5889d4f30deb451deedf" - integrity sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001538, caniuse-lite@^1.0.30001565, caniuse-lite@^1.0.30001688: + version "1.0.30001723" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001723.tgz" + integrity sha512-1R/elMjtehrFejxwmexeXAtae5UO9iSyFn6G/I806CYC/BLyyBk1EPhrKBkWhy6wM6Xnm47dSJQec+tLJ39WHw== capital-case@^1.0.4: version "1.0.4" @@ -7697,7 +7646,7 @@ chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@^4.0, chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: +chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== @@ -8252,11 +8201,6 @@ comma-separated-tokens@^2.0.0: resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz#d4c25abb679b7751c880be623c1179780fe1dd98" integrity sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg== -command-exists@^1.2.4: - version "1.2.8" - resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.8.tgz#715acefdd1223b9c9b37110a149c6392c2852291" - integrity sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw== - commander@^10.0.1: version "10.0.1" resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06" @@ -8743,11 +8687,16 @@ cookie@0.6.0, cookie@^0.6.0: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== -cookie@^0.4.2, cookie@~0.4.1: +cookie@^0.4.2: version "0.4.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== +cookie@~0.7.2: + version "0.7.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" + integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== + cookies@0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/cookies/-/cookies-0.8.0.tgz#1293ce4b391740a8406e3c9870e828c4b54f3f90" @@ -9676,7 +9625,7 @@ deepmerge@^1.3.0: version "1.5.2" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753" -deepmerge@^4.0, deepmerge@^4.2.2, deepmerge@^4.3.1: +deepmerge@^4.2.2, deepmerge@^4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== @@ -9888,35 +9837,6 @@ detective@^5.2.0: defined "^1.0.0" minimist "^1.1.1" -devcert@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/devcert/-/devcert-1.2.2.tgz#7ebbefeb74991e269ceafcd66f2bb78677c12652" - integrity sha512-UsLqvtJGPiGwsIZnJINUnFYaWgK7CroreGRndWHZkRD58tPFr3pVbbSyHR8lbh41+azR4jKvuNZ+eCoBZGA5kA== - dependencies: - "@types/configstore" "^2.1.1" - "@types/debug" "^0.0.30" - "@types/get-port" "^3.2.0" - "@types/glob" "^5.0.34" - "@types/lodash" "^4.14.92" - "@types/mkdirp" "^0.5.2" - "@types/node" "^8.5.7" - "@types/rimraf" "^2.0.2" - "@types/tmp" "^0.0.33" - application-config-path "^0.1.0" - command-exists "^1.2.4" - debug "^3.1.0" - eol "^0.9.1" - get-port "^3.2.0" - glob "^7.1.2" - is-valid-domain "^0.1.6" - lodash "^4.17.4" - mkdirp "^0.5.1" - password-prompt "^1.0.4" - rimraf "^2.6.2" - sudo-prompt "^8.2.0" - tmp "^0.0.33" - tslib "^1.10.0" - devtools-protocol@0.0.854822: version "0.0.854822" resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.854822.tgz#eac3a5260a6b3b4e729a09fdc0c77b0d322e777b" @@ -10397,37 +10317,36 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0, end-of-stream@^1.4.1: dependencies: once "^1.4.0" -engine.io-client@~6.5.1: - version "6.5.1" - resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.5.1.tgz#1735fb8ae3bae5ae13115e18d2f484daf005dd9c" - integrity sha512-hE5wKXH8Ru4L19MbM1GgYV/2Qo54JSMh1rlJbfpa40bEWkCKNo3ol2eOtGmowcr+ysgbI7+SGL+by42Q3pt/Ng== +engine.io-client@~6.6.1: + version "6.6.3" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-6.6.3.tgz#815393fa24f30b8e6afa8f77ccca2f28146be6de" + integrity sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w== dependencies: "@socket.io/component-emitter" "~3.1.0" debug "~4.3.1" - engine.io-parser "~5.1.0" - ws "~8.11.0" - xmlhttprequest-ssl "~2.0.0" + engine.io-parser "~5.2.1" + ws "~8.17.1" + xmlhttprequest-ssl "~2.1.1" -engine.io-parser@~5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.1.0.tgz#d593d6372d7f79212df48f807b8cace1ea1cb1b8" - integrity sha512-enySgNiK5tyZFynt3z7iqBR+Bto9EVVVvDFuTT0ioHCGbzirZVGDGiQjZzEp8hWl6hd5FSVytJGuScX1C1C35w== +engine.io-parser@~5.2.1: + version "5.2.3" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.2.3.tgz#00dc5b97b1f233a23c9398d0209504cf5f94d92f" + integrity sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q== -engine.io@~6.5.0: - version "6.5.1" - resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.5.1.tgz#59725f8593ccc891abb47f1efcdc52a089525a56" - integrity sha512-mGqhI+D7YxS9KJMppR6Iuo37Ed3abhU8NdfgSvJSDUafQutrN+sPTncJYTyM9+tkhSmWodKtVYGPPHyXJEwEQA== +engine.io@~6.6.0: + version "6.6.4" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.6.4.tgz#0a89a3e6b6c1d4b0c2a2a637495e7c149ec8d8ee" + integrity sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g== dependencies: - "@types/cookie" "^0.4.1" "@types/cors" "^2.8.12" "@types/node" ">=10.0.0" accepts "~1.3.4" base64id "2.0.0" - cookie "~0.4.1" + cookie "~0.7.2" cors "~2.8.5" debug "~4.3.1" - engine.io-parser "~5.1.0" - ws "~8.11.0" + engine.io-parser "~5.2.1" + ws "~8.17.1" enhanced-resolve@^5.15.0: version "5.15.0" @@ -10477,11 +10396,6 @@ envinfo@^7.10.0, envinfo@^7.3.1, envinfo@^7.7.3: resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13" integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw== -eol@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/eol/-/eol-0.9.1.tgz#f701912f504074be35c6117a5c4ade49cd547acd" - integrity sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg== - err-code@^1.0.0: version "1.1.2" resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960" @@ -12385,11 +12299,6 @@ get-pkg-repo@^1.0.0: parse-github-repo-url "^1.3.0" through2 "^2.0.0" -get-port@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" - integrity sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw= - get-port@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/get-port/-/get-port-4.2.0.tgz#e37368b1e863b7629c43c5a323625f95cf24b119" @@ -12523,14 +12432,6 @@ git-up@^4.0.0: is-ssh "^1.3.0" parse-url "^6.0.0" -git-up@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467" - integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ== - dependencies: - is-ssh "^1.4.0" - parse-url "^8.1.0" - git-url-parse@^11.1.2: version "11.1.2" resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.1.2.tgz#aff1a897c36cc93699270587bea3dbcbbb95de67" @@ -12644,6 +12545,18 @@ glob@^10.3.7: minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-scurry "^1.10.1" +glob@^10.4.2: + version "10.4.5" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956" + integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg== + dependencies: + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" + glob@^6.0.1: version "6.0.4" resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" @@ -12928,9 +12841,9 @@ graphql-type-json@0.3.2: integrity sha512-J+vjof74oMlCWXSvt0DOf2APEdZOCdubEvGDUAlqH//VBYcOYsGgRW7Xzorr44LvkjiuvecWc8fChxuZZbChtg== "graphql@^15.0.0 || ^16.0.0", graphql@^16.6.0, graphql@^16.7.1: - version "16.9.0" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.9.0.tgz#1c310e63f16a49ce1fbb230bd0a000e99f6f115f" - integrity sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw== + version "16.11.0" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-16.11.0.tgz#96d17f66370678027fdf59b2d4c20b4efaa8a633" + integrity sha512-mS1lbMsxgQj6hge1XZ6p7GPhbrtFwUFYi3wRzXAC/FmYnyXMTvvI3td3rjmQ2u8ewXueaSvRPWaEcgVVOT9Jnw== gray-matter@^2.1.0: version "2.1.1" @@ -14597,7 +14510,7 @@ is-shared-array-buffer@^1.0.2: dependencies: call-bind "^1.0.2" -is-ssh@^1.3.0, is-ssh@^1.4.0: +is-ssh@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.0.tgz#4f8220601d2839d8fa624b3106f8e8884f01b8b2" integrity sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ== @@ -14682,13 +14595,6 @@ is-uuid@^1.0.2: resolved "https://registry.yarnpkg.com/is-uuid/-/is-uuid-1.0.2.tgz#ad1898ddf154947c25c8e54966f48604e9caecc4" integrity sha1-rRiY3fFUlHwlyOVJZvSGBOnK7MQ= -is-valid-domain@^0.1.6: - version "0.1.6" - resolved "https://registry.yarnpkg.com/is-valid-domain/-/is-valid-domain-0.1.6.tgz#3c85469d2938f170c8f82ce6e52df8ad9fca8105" - integrity sha512-ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg== - dependencies: - punycode "^2.1.1" - is-valid-glob@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" @@ -14853,6 +14759,15 @@ jackspeak@^2.3.5: optionalDependencies: "@pkgjs/parseargs" "^0.11.0" +jackspeak@^3.1.2: + version "3.4.3" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a" + integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + jake@^10.8.5: version "10.9.2" resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz#6ae487e6a69afec3a5e167628996b59f35ae2b7f" @@ -15678,12 +15593,6 @@ katex@^0.13.18: dependencies: commander "^6.0.0" -kebab-hash@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/kebab-hash/-/kebab-hash-0.1.2.tgz#dfb7949ba34d8e70114ea7d83e266e5e2a4abaac" - dependencies: - lodash.kebabcase "^4.1.1" - keygrip@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/keygrip/-/keygrip-1.1.0.tgz#871b1681d5e159c62a445b0c74b615e0917e7226" @@ -16086,7 +15995,7 @@ lock@^1.1.0: resolved "https://registry.yarnpkg.com/lock/-/lock-1.1.0.tgz#53157499d1653b136ca66451071fca615703fa55" integrity sha1-UxV0mdFlOxNspmRRBx/KYVcD+lU= -lockfile@1.0.4, lockfile@^1.0, lockfile@^1.0.4: +lockfile@1.0.4, lockfile@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/lockfile/-/lockfile-1.0.4.tgz#07f819d25ae48f87e538e6578b6964a4981a5609" dependencies: @@ -16182,14 +16091,10 @@ lodash.foreach@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" -lodash.get@^4.0, lodash.get@^4.4.2: +lodash.get@^4.4.2: version "4.4.2" resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" -lodash.has@^4.0: - version "4.5.2" - resolved "https://registry.yarnpkg.com/lodash.has/-/lodash.has-4.5.2.tgz#d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862" - lodash.includes@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f" @@ -16240,7 +16145,7 @@ lodash.iteratee@^4.5.0: version "4.7.0" resolved "https://registry.yarnpkg.com/lodash.iteratee/-/lodash.iteratee-4.7.0.tgz#be4177db289a8ccc3c0990f1db26b5b22fc1554c" -lodash.kebabcase@4.1.1, lodash.kebabcase@^4.1.1: +lodash.kebabcase@4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" @@ -16442,6 +16347,11 @@ lru-cache@=2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.3.1.tgz#b3adf6b3d856e954e2c390e6cef22081245a53d6" +lru-cache@^10.2.0: + version "10.4.3" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119" + integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ== + lru-cache@^4.0.1: version "4.1.5" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" @@ -17668,6 +17578,13 @@ minimatch@^9.0.1: dependencies: brace-expansion "^2.0.1" +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + minimist-options@4.1.0, minimist-options@^4.0.2: version "4.1.0" resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" @@ -17702,6 +17619,11 @@ minipass@^2.3.5, minipass@^2.6.0, minipass@^2.9.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== +minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + minizlib@^1.3.3: version "1.3.3" resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" @@ -17754,7 +17676,7 @@ mkdirp@*, mkdirp@1.0.4, mkdirp@^1.0.4, mkdirp@~1.0.4: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mkdirp@^0.5.1, mkdirp@^0.5.4, mkdirp@^0.5.5, mkdirp@~0.5.1: +mkdirp@^0.5.1, mkdirp@^0.5.5, mkdirp@^0.5.6, mkdirp@~0.5.1: version "0.5.6" resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6" integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw== @@ -17888,18 +17810,18 @@ msw@^1.2.2: type-fest "^2.19.0" yargs "^17.3.1" -multer@^1.4.5-lts.1: - version "1.4.5-lts.1" - resolved "https://registry.yarnpkg.com/multer/-/multer-1.4.5-lts.1.tgz#803e24ad1984f58edffbc79f56e305aec5cfd1ac" - integrity sha512-ywPWvcDMeH+z9gQq5qYHCCy+ethsk4goepZ45GLD63fOu0YcNecQxi64nDs3qluZB+murG3/D4dJ7+dGctcCQQ== +multer@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/multer/-/multer-2.0.1.tgz#3ed335ed2b96240e3df9e23780c91cfcf5d29202" + integrity sha512-Ug8bXeTIUlxurg8xLTEskKShvcKDZALo1THEX5E41pYCD2sCVub5/kIRIGqWNoqV6szyLyQKV6mD4QUrWE5GCQ== dependencies: append-field "^1.0.0" - busboy "^1.0.0" - concat-stream "^1.5.2" - mkdirp "^0.5.4" + busboy "^1.6.0" + concat-stream "^2.0.0" + mkdirp "^0.5.6" object-assign "^4.1.1" - type-is "^1.6.4" - xtend "^4.0.0" + type-is "^1.6.18" + xtend "^4.0.2" multimatch@^3.0.0: version "3.0.0" @@ -18963,6 +18885,11 @@ p-waterfall@^1.0.0: dependencies: p-reduce "^1.0.0" +package-json-from-dist@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505" + integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw== + package-json@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" @@ -19140,13 +19067,6 @@ parse-path@^4.0.0: is-ssh "^1.3.0" protocols "^1.4.0" -parse-path@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.0.0.tgz#605a2d58d0a749c8594405d8cc3a2bf76d16099b" - integrity sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog== - dependencies: - protocols "^2.0.0" - parse-srcset@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1" @@ -19166,13 +19086,6 @@ parse-url@^6.0.0: parse-path "^4.0.0" protocols "^1.4.0" -parse-url@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d" - integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w== - dependencies: - parse-path "^7.0.0" - parse5-htmlparser2-tree-adapter@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" @@ -19218,14 +19131,6 @@ passerror@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/passerror/-/passerror-1.1.1.tgz#a25b88dbdd910a29603aec7dcb96e9a7a97687b4" -password-prompt@^1.0.4: - version "1.1.2" - resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.2.tgz#85b2f93896c5bd9e9f2d6ff0627fa5af3dc00923" - integrity sha512-bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA== - dependencies: - ansi-escapes "^3.1.0" - cross-spawn "^6.0.5" - patch-console@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/patch-console/-/patch-console-1.0.0.tgz#19b9f028713feb8a3c023702a8cc8cb9f7466f9d" @@ -19308,6 +19213,14 @@ path-scurry@^1.10.1: lru-cache "^9.1.1 || ^10.0.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-to-regexp@0.1.10: version "0.1.10" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b" @@ -20512,7 +20425,7 @@ protocols@^1.4.0: version "1.4.6" resolved "https://registry.yarnpkg.com/protocols/-/protocols-1.4.6.tgz#f8bb263ea1b5fd7a7604d26b8be39bd77678bf8a" -protocols@^2.0.0, protocols@^2.0.1: +protocols@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.1.tgz#8f155da3fc0f32644e83c5782c8e8212ccf70a86" integrity sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q== @@ -22243,7 +22156,7 @@ schema-utils@^2.6.5, schema-utils@^2.7.0: ajv "^6.12.4" ajv-keywords "^3.5.2" -schema-utils@^3.0, schema-utils@^3.0.0, schema-utils@^3.1.1: +schema-utils@^3.0.0, schema-utils@^3.1.1: version "3.3.0" resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== @@ -22721,14 +22634,14 @@ socket.io-adapter@~2.5.2: dependencies: ws "~8.11.0" -socket.io-client@4.7.1: - version "4.7.1" - resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.7.1.tgz#48e5f703abe4fb0402182bcf9c06b7820fb3453b" - integrity sha512-Qk3Xj8ekbnzKu3faejo4wk2MzXA029XppiXtTF/PkbTg+fcwaTw1PlDrTrrrU4mKoYC4dvlApOnSeyLCKwek2w== +socket.io-client@^4.8.1: + version "4.8.1" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-4.8.1.tgz#1941eca135a5490b94281d0323fe2a35f6f291cb" + integrity sha512-hJVXfu3E28NmzGk8o1sHhN3om52tRvwYeidbj7xKy2eIIse5IoKX3USlS6Tqt3BHAtflLIkCQBkzVrEEfWUyYQ== dependencies: "@socket.io/component-emitter" "~3.1.0" debug "~4.3.2" - engine.io-client "~6.5.1" + engine.io-client "~6.6.1" socket.io-parser "~4.2.4" socket.io-parser@~4.2.4: @@ -22739,16 +22652,16 @@ socket.io-parser@~4.2.4: "@socket.io/component-emitter" "~3.1.0" debug "~4.3.1" -socket.io@4.7.1: - version "4.7.1" - resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.7.1.tgz#9009f31bf7be25478895145e92fbc972ad1db900" - integrity sha512-W+utHys2w//dhFjy7iQQu9sGd3eokCjGbl2r59tyLqNiJJBdIebn3GAKEXBr3osqHTObJi2die/25bCx2zsaaw== +socket.io@^4.8.1: + version "4.8.1" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.8.1.tgz#fa0eaff965cc97fdf4245e8d4794618459f7558a" + integrity sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg== dependencies: accepts "~1.3.4" base64id "~2.0.0" cors "~2.8.5" debug "~4.3.2" - engine.io "~6.5.0" + engine.io "~6.6.0" socket.io-adapter "~2.5.2" socket.io-parser "~4.2.4" @@ -23629,11 +23542,6 @@ subset-font@^1.1.0: harfbuzzjs "^0.1.5" p-limit "^3.1.0" -sudo-prompt@^8.2.0: - version "8.2.5" - resolved "https://registry.yarnpkg.com/sudo-prompt/-/sudo-prompt-8.2.5.tgz#cc5ef3769a134bb94b24a631cc09628d4d53603e" - integrity sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw== - supports-color@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -23804,7 +23712,7 @@ tapable@^1.0.0: resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tapable@^2.0, tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: +tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.0.tgz#5c373d281d9c672848213d0e037d1c4165ab426b" integrity sha512-FBk4IesMV1rBxX2tfiK8RAmogtWn53puLOQlvO8XuwlgxcYbP4mVPS9Ph4aeamSyyVjOl24aYWAuc8U5kCVwMw== @@ -24486,7 +24394,7 @@ type-fest@^4.0.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-4.30.0.tgz#cf411e7630578ad9e9884951dfaeef6588f970fe" integrity sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA== -type-is@^1.6.4, type-is@~1.6.18: +type-is@^1.6.18, type-is@~1.6.18: version "1.6.18" resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== @@ -25649,19 +25557,6 @@ webidl-conversions@^7.0.0: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-7.0.0.tgz#256b4e1882be7debbf01d05f0aa2039778ea080a" integrity sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g== -webpack-assets-manifest@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/webpack-assets-manifest/-/webpack-assets-manifest-5.1.0.tgz#5af328f6c8fa760cb9a62af631a83da2b478b791" - integrity sha512-kPuTMEjBrqZQVJ5M6yXNBCEdFbQQn7p+loNXt8NOeDFaAbsNFWqqwR0YL1mfG5LbwhK5FLXWXpuK3GuIIZ46rg== - dependencies: - chalk "^4.0" - deepmerge "^4.0" - lockfile "^1.0" - lodash.get "^4.0" - lodash.has "^4.0" - schema-utils "^3.0" - tapable "^2.0" - webpack-cli@^5.1.4: version "5.1.4" resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.4.tgz#c8e046ba7eaae4911d7e71e2b25b776fcc35759b" @@ -25718,10 +25613,10 @@ webpack-stats-plugin@^1.1.3: resolved "https://registry.yarnpkg.com/webpack-stats-plugin/-/webpack-stats-plugin-1.1.3.tgz#ebcc36c8b468074ad737882e2043c1ce4b55d928" integrity sha512-yUKYyy+e0iF/w31QdfioRKY+h3jDBRpthexBOWGKda99iu2l/wxYsI/XqdlP5IU58/0KB9CsJZgWNAl+/MPkRw== -webpack-virtual-modules@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz#362f14738a56dae107937ab98ea7062e8bdd3b6c" - integrity sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw== +webpack-virtual-modules@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz#057faa9065c8acf48f24cb57ac0e77739ab9a7e8" + integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== webpack@~5.98.0: version "5.98.0" @@ -26198,6 +26093,11 @@ ws@^8.11.0, ws@~8.11.0: resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143" integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg== +ws@~8.17.1: + version "8.17.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b" + integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== + xdg-basedir@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" @@ -26256,10 +26156,10 @@ xmldom@^0.1.27: version "0.1.27" resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" -xmlhttprequest-ssl@~2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.0.0.tgz#91360c86b914e67f44dce769180027c0da618c67" - integrity sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A== +xmlhttprequest-ssl@~2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz#e9e8023b3f29ef34b97a859f584c5e6c61418e23" + integrity sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ== xstate@^4.38.0: version "4.38.0"