From 0840cf20eaee624c5be25d7fae93c798b6c6eb7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Nov 2024 01:14:53 +0000 Subject: [PATCH 1/2] Bump the github-actions-updates group with 5 updates Bumps the github-actions-updates group with 5 updates: | Package | From | To | | --- | --- | --- | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `3` | `6` | | [pnpm/action-setup](https://github.com/pnpm/action-setup) | `2.4.0` | `4.0.0` | | [actions/cache](https://github.com/actions/cache) | `3` | `4` | | [andresz1/size-limit-action](https://github.com/andresz1/size-limit-action) | `7313b26c76b3666c1dc41e2ca05370e201a9b7de` | `94bc357df29c36c8f8d50ea497c3e225c3c95d1d` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `2` | `4` | Updates `golangci/golangci-lint-action` from 3 to 6 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v3...v6) Updates `pnpm/action-setup` from 2.4.0 to 4.0.0 - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v2.4.0...v4.0.0) Updates `actions/cache` from 3 to 4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) Updates `andresz1/size-limit-action` from 7313b26c76b3666c1dc41e2ca05370e201a9b7de to 94bc357df29c36c8f8d50ea497c3e225c3c95d1d - [Release notes](https://github.com/andresz1/size-limit-action/releases) - [Commits](https://github.com/andresz1/size-limit-action/compare/7313b26c76b3666c1dc41e2ca05370e201a9b7de...94bc357df29c36c8f8d50ea497c3e225c3c95d1d) Updates `actions/upload-artifact` from 2 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v4) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: pnpm/action-setup dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates - dependency-name: andresz1/size-limit-action dependency-type: direct:production dependency-group: github-actions-updates - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-updates ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-backend.yml | 4 ++-- .github/workflows/ci-frontend-api.yml | 12 ++++++------ .github/workflows/ci-frontend.yml | 20 ++++++++++---------- .github/workflows/e2e-tests.yml | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index 90784bcc0c..5a18916e8b 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -52,13 +52,13 @@ jobs: TZ: "America/Chicago" - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: v1.58 working-directory: backend/app - name: golangci-lint on example directory - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: v1.58 args: --config ../../.golangci.yml diff --git a/.github/workflows/ci-frontend-api.yml b/.github/workflows/ci-frontend-api.yml index 2aaf0676b3..7b6fd8c0e9 100644 --- a/.github/workflows/ci-frontend-api.yml +++ b/.github/workflows/ci-frontend-api.yml @@ -32,7 +32,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -44,7 +44,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -76,7 +76,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -88,7 +88,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -120,7 +120,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -132,7 +132,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml index e7b2a9d37e..a571a16f48 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/ci-frontend.yml @@ -32,7 +32,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -44,7 +44,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -76,7 +76,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -88,7 +88,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -120,7 +120,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -132,7 +132,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} @@ -158,14 +158,14 @@ jobs: uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 run_install: false - name: Check bundle size - uses: andresz1/size-limit-action@7313b26c76b3666c1dc41e2ca05370e201a9b7de + uses: andresz1/size-limit-action@94bc357df29c36c8f8d50ea497c3e225c3c95d1d with: github_token: ${{ secrets.GITHUB_TOKEN }} directory: ./frontend/apps/remark42 @@ -188,7 +188,7 @@ jobs: node-version: ${{ matrix.node }} - name: Install pnpm - uses: pnpm/action-setup@v2.4.0 + uses: pnpm/action-setup@v4.0.0 id: pnpm-install with: version: 7 @@ -200,7 +200,7 @@ jobs: echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" - name: Setup pnpm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 69e3379ce8..37c8f2a0c7 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -28,7 +28,7 @@ jobs: id: tests run: COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose -f compose-e2e-test.yml up --build --quiet-pull --exit-code-from tests - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report From aebe99ea8f7d0a4a8ce56634a7cd082a3ee4e2ac Mon Sep 17 00:00:00 2001 From: Dmitry Verkhoturov Date: Fri, 8 Nov 2024 20:43:45 +0000 Subject: [PATCH 2/2] unpin bugfix js version, use codecov github action --- .github/workflows/ci-frontend-api.yml | 16 ++--- .github/workflows/ci-frontend.yml | 18 +++--- Dockerfile.artifacts | 2 +- frontend/.nvmrc | 2 +- frontend/apps/remark42/codecov.yml | 3 +- frontend/apps/remark42/package.json | 1 - frontend/pnpm-lock.yaml | 85 --------------------------- 7 files changed, 22 insertions(+), 105 deletions(-) diff --git a/.github/workflows/ci-frontend-api.yml b/.github/workflows/ci-frontend-api.yml index 7b6fd8c0e9..929ed8871a 100644 --- a/.github/workflows/ci-frontend-api.yml +++ b/.github/workflows/ci-frontend-api.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16.20.2] + node: [ 16 ] steps: - name: Checkout @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16.20.2] + node: [ 16 ] steps: - name: Checkout @@ -108,7 +108,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16.20.2] + node: [ 16 ] steps: - name: Checkout @@ -147,7 +147,9 @@ jobs: run: pnpm coverage:api working-directory: ./frontend - - name: Submit coverage - run: ${{ github.workspace }}/frontend/apps/remark42/node_modules/.bin/codecov - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + working-directory: ./frontend + codecov_yml_path: ./frontend/apps/remark42/codecov.yml diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml index a571a16f48..e279f9ebb1 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/ci-frontend.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16.20.2] + node: [16] steps: - name: Checkout @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16.20.2] + node: [16] steps: - name: Checkout @@ -108,7 +108,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16.20.2] + node: [16] steps: - name: Checkout @@ -176,7 +176,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16.20.2] + node: [16] steps: - name: Checkout @@ -215,7 +215,9 @@ jobs: run: pnpm coverage working-directory: ./frontend/apps/remark42 - - name: Submit coverage - run: ${{ github.workspace }}/frontend/apps/remark42/node_modules/.bin/codecov - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} + working-directory: ./frontend/apps/remark42 + codecov_yml_path: ./frontend/apps/remark42/codecov.yml diff --git a/Dockerfile.artifacts b/Dockerfile.artifacts index 35737da99f..0d627d26d5 100644 --- a/Dockerfile.artifacts +++ b/Dockerfile.artifacts @@ -1,4 +1,4 @@ -FROM node:16.20.2-alpine AS frontend-deps +FROM node:16-alpine AS frontend-deps ENV CI=true diff --git a/frontend/.nvmrc b/frontend/.nvmrc index cb406c60ce..b6a7d89c68 100644 --- a/frontend/.nvmrc +++ b/frontend/.nvmrc @@ -1 +1 @@ -16.20.2 +16 diff --git a/frontend/apps/remark42/codecov.yml b/frontend/apps/remark42/codecov.yml index 86b271152c..d8ec974ded 100644 --- a/frontend/apps/remark42/codecov.yml +++ b/frontend/apps/remark42/codecov.yml @@ -1,6 +1,5 @@ codecov: - notify: - require_ci_to_pass: false + require_ci_to_pass: false ignore: - .editorconfig diff --git a/frontend/apps/remark42/package.json b/frontend/apps/remark42/package.json index 461079a580..a8558da7e1 100644 --- a/frontend/apps/remark42/package.json +++ b/frontend/apps/remark42/package.json @@ -75,7 +75,6 @@ "babel-loader": "^8.2.5", "babel-plugin-jsx-remove-data-test-id": "^3.0.0", "clean-webpack-plugin": "^4.0.0", - "codecov": "^3.8.3", "copy-webpack-plugin": "^12.0.2", "cross-env": "^7.0.3", "css-loader": "^6.7.1", diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml index da90399566..41c203e985 100644 --- a/frontend/pnpm-lock.yaml +++ b/frontend/pnpm-lock.yaml @@ -50,7 +50,6 @@ importers: bem-react-helper: ^1.2.2 clean-webpack-plugin: ^4.0.0 clsx: ^1.1.1 - codecov: ^3.8.3 copy-webpack-plugin: ^12.0.2 core-js: ^3.23.3 cross-env: ^7.0.3 @@ -163,7 +162,6 @@ importers: babel-loader: 8.2.5_fswvdo7jykdwhfxrdcvghfn6pa babel-plugin-jsx-remove-data-test-id: 3.0.0_@babel+core@7.18.6 clean-webpack-plugin: 4.0.0_webpack@5.73.0 - codecov: 3.8.3 copy-webpack-plugin: 12.0.2_webpack@5.73.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.73.0 @@ -2652,11 +2650,6 @@ packages: preact: 10.6.2 dev: true - /@tootallnate/once/1.1.2: - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: '>= 6'} - dev: true - /@tootallnate/once/2.0.0: resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} engines: {node: '>= 10'} @@ -3694,11 +3687,6 @@ packages: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} dev: true - /argv/0.0.2: - resolution: {integrity: sha512-dEamhpPEwRUBpLNHeuCm/v+g0anFByHahxodVO/BbAarHVBBg2MccCwf9K+o1Pof+2btdnkJelYVUWjW/VrATw==} - engines: {node: '>=0.6.10'} - dev: true - /aria-query/4.2.2: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} @@ -4427,22 +4415,6 @@ packages: engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true - /codecov/3.8.3: - resolution: {integrity: sha512-Y8Hw+V3HgR7V71xWH2vQ9lyS358CbGCldWlJFR0JirqoGtOoas3R3/OclRTvgUYFK29mmJICDPauVKmpqbwhOA==} - engines: {node: '>=4.0'} - deprecated: https://about.codecov.io/blog/codecov-uploader-deprecation-plan/ - hasBin: true - dependencies: - argv: 0.0.2 - ignore-walk: 3.0.4 - js-yaml: 3.14.1 - teeny-request: 7.1.1 - urlgrey: 1.0.0 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - /collect-v8-coverage/1.0.1: resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} dev: true @@ -6143,12 +6115,6 @@ packages: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true - /fast-url-parser/1.1.3: - resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} - dependencies: - punycode: 1.4.1 - dev: true - /fastest-levenshtein/1.0.12: resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==} dev: true @@ -6728,17 +6694,6 @@ packages: resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} dev: true - /http-proxy-agent/4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: '>= 6'} - dependencies: - '@tootallnate/once': 1.1.2 - agent-base: 6.0.2 - debug: 4.3.4 - transitivePeerDependencies: - - supports-color - dev: true - /http-proxy-agent/5.0.0: resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} engines: {node: '>= 6'} @@ -6840,12 +6795,6 @@ packages: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} dev: true - /ignore-walk/3.0.4: - resolution: {integrity: sha512-PY6Ii8o1jMRA1z4F2hRkH/xN59ox43DavKvD3oDpfurRlOJyAHpifIwpbdv1n4jt4ov0jSpw3kQ4GhJnpBL6WQ==} - dependencies: - minimatch: 3.1.2 - dev: true - /ignore/5.2.0: resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} engines: {node: '>= 4'} @@ -9912,10 +9861,6 @@ packages: resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} dev: true - /punycode/1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} - dev: true - /punycode/2.1.1: resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} engines: {node: '>=6'} @@ -10739,12 +10684,6 @@ packages: engines: {node: '>= 0.8'} dev: true - /stream-events/1.0.5: - resolution: {integrity: sha512-E1GUzBSgvct8Jsb3v2X15pjzN1tYebtbLaMg+eBOUOAxgbLoSbT2NS91ckc5lJD1KfLjId+jXJRgo0qnV5Nerg==} - dependencies: - stubs: 3.0.0 - dev: true - /strict-event-emitter/0.2.4: resolution: {integrity: sha512-xIqTLS5azUH1djSUsLH9DbP6UnM/nI18vu8d43JigCQEoVsnY+mrlE+qv6kYqs6/1OkMnMIiL6ffedQSZStuoQ==} dependencies: @@ -10891,10 +10830,6 @@ packages: engines: {node: '>=8'} dev: true - /stubs/3.0.0: - resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==} - dev: true - /style-loader/3.3.1_webpack@5.73.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} @@ -11078,20 +11013,6 @@ packages: engines: {node: '>=6'} dev: true - /teeny-request/7.1.1: - resolution: {integrity: sha512-iwY6rkW5DDGq8hE2YgNQlKbptYpY5Nn2xecjQiNjOXWbKzPGUfmeUBCSQbbr306d7Z7U2N0TPl+/SwYRfua1Dg==} - engines: {node: '>=10'} - dependencies: - http-proxy-agent: 4.0.1 - https-proxy-agent: 5.0.1 - node-fetch: 2.6.7 - stream-events: 1.0.5 - uuid: 8.3.2 - transitivePeerDependencies: - - encoding - - supports-color - dev: true - /terminal-link/2.1.1: resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} engines: {node: '>=8'} @@ -11653,12 +11574,6 @@ packages: webpack: 5.73.0_323cogk7mrkhphrh6zdbuggp4a dev: true - /urlgrey/1.0.0: - resolution: {integrity: sha512-hJfIzMPJmI9IlLkby8QrsCykQ+SXDeO2W5Q9QTW3QpqZVTx4a/K7p8/5q+/isD8vsbVaFgql/gvAoQCRQ2Cb5w==} - dependencies: - fast-url-parser: 1.1.3 - dev: true - /use-sync-external-store/1.2.0_@preact+compat@17.1.1: resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: