From 6f0e626fa2e3e9f25de3c42761cf586729212e96 Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Wed, 22 Nov 2023 11:58:24 +0000 Subject: [PATCH] chore: remove console (#588) Console moved to https://github.com/web3-storage/console w3ui is currently publishing an old version of console to staging @ https://staging.console.web3.storage/ --- .github/actions/preview/action.yml | 80 -------- .github/workflows/release.yml | 67 ------- .github/workflows/w3console.yaml | 54 ----- .release-please-manifest.json | 1 - README.md | 9 - pnpm-lock.yaml | 308 +++++++++++++++++++---------- release-please-config.json | 4 +- 7 files changed, 208 insertions(+), 315 deletions(-) delete mode 100644 .github/actions/preview/action.yml delete mode 100644 .github/workflows/w3console.yaml diff --git a/.github/actions/preview/action.yml b/.github/actions/preview/action.yml deleted file mode 100644 index 965149da..00000000 --- a/.github/actions/preview/action.yml +++ /dev/null @@ -1,80 +0,0 @@ -name: publish -description: 'Add to w3 and update dns' - -inputs: - path_to_add: - description: 'Path to directory to publish' - required: true - web3_token: - description: 'API Key for web3.storage' - required: true - dnslink_record: - description: 'subdomain to publish DNSLink TXT record under e.g console' - required: false - dnslink_domain: - description: 'domain to publish DNSLink TXT record under e.g web3.storage' - required: false - cf_pages_project: - description: 'Pages project name to publish to' - required: true - cf_account_id: - description: 'Account id for Cloudflare' - required: true - cf_token: - description: 'API Key for Cloudflare' - required: true - -outputs: - cid: - description: 'The IPFS Content ID for the directory e.g. bafkreihc7sejzq4ab4kygfyjvs4ye7bxyzgfdpzt7caqkizqnzgf6zgogi' - value: ${{ steps.ipfs.outputs.cid }} - url: - description: 'The IPFS gateway URL for the directory e.g https://w3s.link/ipfs/bafkreihc7sejzq4ab4kygfyjvs4ye7bxyzgfdpzt7caqkizqnzgf6zgogi' - value: https://${{ steps.ipfs.outputs.cid }}.ipfs.w3s.link - cloudflare_url: - description: 'The Cloudflare URL for the directory e.g https://dweb.link/ipfs/bafkreihc7sejzq4ab4kygfyjvs4ye7bxyzgfdpzt7caqkizqnzgf6zgogi' - value: ${{ steps.get_url.outputs.url }} - summary: - description: 'Text summary of the published urls' - value: ${{ steps.set_summary.outputs.summary }} - -runs: - using: 'composite' - steps: - - name: Add to web3.storage - uses: web3-storage/add-to-web3@v2 - id: ipfs - with: - path_to_add: ${{ inputs.path_to_add }} - web3_token: ${{ inputs.web3_token }} - - - name: Update IPFS DNSLink - if: inputs.dnslink_domain != '' && github.event_name == 'push' && github.ref == 'refs/heads/main' - run: npx dnslink-cloudflare --record ${{ inputs.dnslink_record }} --domain ${{ inputs.dnslink_domain }} --link /ipfs/${{ steps.ipfs.outputs.cid }} - shell: bash - env: - CF_API_TOKEN: ${{ inputs.cf_token }} - - - name: Deploy preview build to Cloudflare Pages - uses: mathiasvr/command-output@v1.1.0 - id: cloudflare - with: - run: npx wrangler pages publish --project-name ${{ inputs.cf_pages_project }} --branch "$GITHUB_REF_NAME" --commit-hash "$GITHUB_SHA" ${{ inputs.path_to_add }} - env: - CLOUDFLARE_API_TOKEN: ${{ inputs.cf_token }} - CLOUDFLARE_ACCOUNT_ID: ${{ inputs.cf_account_id }} - - - name: Find Cloudflare Pages preview URL - uses: mathiasvr/command-output@v1.1.0 - id: cloudflare_url - with: - run: egrep -o 'https?://[^ ]+' <(echo "${{ steps.cloudflare.outputs.stdout }}") - - - name: Set Job Summary - uses: actions/github-script@v5 - id: set_summary - with: - script: | - core.setOutput('summary', `### Website preview 🔗✨ - - 🙂 https://w3s.link/ipfs/${{ steps.ipfs.outputs.cid }} - - ⛅️ ${{ steps.cloudflare_url.outputs.stdout }}`) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 417a7c59..69ad6be7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,8 +25,6 @@ jobs: strategy: matrix: path_released: ${{fromJson(needs.release.outputs.paths_released)}} - exclude: - - path_released: examples/react/w3console steps: - uses: actions/checkout@v3 if: ${{matrix.path_released != ''}} @@ -44,68 +42,3 @@ jobs: pnpm publish --access=public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - - publish-w3console-staging: - name: Publish w3console staging - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/pnpm - - name: Build staging.console.web3.storage - run: pnpm build - working-directory: examples/react/w3console - env: - VITE_W3UP_PROVIDER: did:web:staging.web3.storage - VITE_W3UP_SERVICE_URL: 'https://staging.up.web3.storage' - VITE_W3UP_SERVICE_DID: 'did:web:staging.web3.storage' - VITE_W3UP_SERVICE_BRAND_NAME: 'staging.web3.storage' - - name: Publish staging.console.web3.storage - uses: ./.github/actions/preview - with: - path_to_add: examples/react/w3console/dist - web3_token: ${{ secrets.WEB3_TOKEN }} - cf_pages_project: console-web3-storage-staging - cf_account_id: ${{ secrets.CF_ACCOUNT_ID }} - cf_token: ${{ secrets.CF_TOKEN }} - - publish-w3console-production: - name: Publish w3console production - needs: release - if: contains(fromJson(needs.release.outputs.paths_released), 'examples/react/w3console') - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/pnpm - - name: Build console.web3.storage - run: pnpm build - working-directory: examples/react/w3console - env: - VITE_W3UP_PROVIDER: did:web:web3.storage - VITE_W3UP_SERVICE_BRAND_NAME: 'web3.storage' - - name: Publish console.web3.storage - uses: ./.github/actions/preview - with: - path_to_add: examples/react/w3console/dist - web3_token: ${{ secrets.WEB3_TOKEN }} - dnslink_record: beta.console - dnslink_domain: web3.storage - cf_pages_project: console-web3-storage - cf_account_id: ${{ secrets.CF_ACCOUNT_ID }} - cf_token: ${{ secrets.CF_TOKEN }} - - name: Build console.nft.storage - run: pnpm build - working-directory: examples/react/w3console - env: - VITE_W3UP_PROVIDER: did:web:nft.storage - VITE_W3UP_SERVICE_BRAND_NAME: 'NFT.Storage' - VITE_W3UP_GATEWAY_HOST: nftstorage.link - - name: Publish console.nft.storage - uses: ./.github/actions/preview - with: - path_to_add: examples/react/w3console/dist - web3_token: ${{ secrets.WEB3_TOKEN }} - dnslink_record: beta.console - dnslink_domain: nft.storage - cf_pages_project: console-nft-storage - cf_account_id: ${{ secrets.CF_ACCOUNT_ID }} - cf_token: ${{ secrets.CF_TOKEN }} diff --git a/.github/workflows/w3console.yaml b/.github/workflows/w3console.yaml deleted file mode 100644 index 76498b1d..00000000 --- a/.github/workflows/w3console.yaml +++ /dev/null @@ -1,54 +0,0 @@ -name: w3console -on: - workflow_dispatch: - push: - branches: - - main - paths: - - 'examples/react/w3console/**' - pull_request: - branches: - - main - paths: - - 'examples/react/w3console/**' -jobs: - publish: - name: Publish - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - uses: ./.github/actions/pnpm - - - name: Build w3console - run: pnpm build - working-directory: examples/react/w3console - env: - VITE_W3UP_SERVICE_URL: 'https://staging.up.web3.storage' - VITE_W3UP_SERVICE_DID: 'did:web:staging.web3.storage' - VITE_W3UP_SERVICE_BRAND_NAME: 'preview.web3.storage' - - name: Publish static site - uses: ./.github/actions/preview - id: preview - with: - path_to_add: examples/react/w3console/dist - web3_token: ${{ secrets.WEB3_TOKEN }} - # Enable to publish dnslink on merge to main - # dnslink_record: console - # dnslink_domain: web3.storage - cf_pages_project: console-web3-storage-preview - cf_account_id: ${{ secrets.CF_ACCOUNT_ID }} - cf_token: ${{ secrets.CF_TOKEN }} - - - name: Add Preview URLs as Job Summary - run: echo "${{ steps.preview.outputs.summary }}" >> $GITHUB_STEP_SUMMARY - - - name: Find Current Pull Request - uses: jwalton/gh-find-current-pr@v1.3.0 - id: finder - - - name: Update Preview URLs PR Comment - uses: marocchino/sticky-pull-request-comment@v2.2.0 - with: - number: ${{ steps.finder.outputs.pr }} - message: ${{ steps.preview.outputs.summary }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a7d5914d..21e4d965 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -11,5 +11,4 @@ "packages/solid-keyring": "6.0.0", "packages/solid-uploader": "6.0.0", "packages/solid-uploads-list": "5.0.0", - "examples/react/w3console": "2.0.1" } diff --git a/README.md b/README.md index 5787da07..bd937ef1 100644 --- a/README.md +++ b/README.md @@ -45,15 +45,6 @@ This repo contains reusauble UI modules for the web3.storage w3up beta in your f A demo of the list of uploads that have been made to an account. -## w3console - -To run w3console, a full-featured console for web3.storage and demonstration of our React components, run: - -```bash -cd examples/react/w3console -pnpm start -``` - ## Contributing Feel free to join in. All welcome. Please read our [contributing guidelines](https://github.com/web3-storage/w3ui/blob/main/CONTRIBUTING.md) and/or [open an issue](https://github.com/web3-storage/w3ui/issues)! diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6dd9f940..a22be753 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -252,16 +252,16 @@ importers: dependencies: '@headlessui/react': specifier: ^1.7.13 - version: 1.7.14(react-dom@18.2.0)(react@18.2.0) + version: 1.7.17(react-dom@18.2.0)(react@18.2.0) '@heroicons/react': specifier: ^2.0.17 version: 2.0.18(react@18.2.0) '@ipld/car': specifier: ^5.1.0 - version: 5.1.1 + version: 5.2.4 '@ipld/dag-ucan': specifier: ^3.2.0 - version: 3.3.2 + version: 3.4.0 '@w3ui/react-keyring': specifier: workspace:^ version: link:../../../packages/react-keyring @@ -276,17 +276,17 @@ importers: version: 2.19.0 preact: specifier: ^10.11.3 - version: 10.14.0 + version: 10.19.2 react-router-dom: specifier: ^6.9.0 - version: 6.11.1(react-dom@18.2.0)(react@18.2.0) + version: 6.19.0(react-dom@18.2.0)(react@18.2.0) devDependencies: '@preact/preset-vite': specifier: ^2.4.0 - version: 2.5.0(@babel/core@7.22.9)(preact@10.14.0)(vite@4.3.6) + version: 2.7.0(@babel/core@7.22.9)(preact@10.19.2)(vite@4.3.9) '@types/blueimp-md5': specifier: ^2.18.0 - version: 2.18.0 + version: 2.18.2 '@ucanto/core': specifier: ^9.0.0 version: 9.0.0 @@ -295,19 +295,19 @@ importers: version: 9.0.0 autoprefixer: specifier: ^10.4.13 - version: 10.4.14(postcss@8.4.23) + version: 10.4.16(postcss@8.4.23) postcss: specifier: ^8.4.21 version: 8.4.23 tailwindcss: specifier: ^3.2.4 - version: 3.3.2(ts-node@10.9.1) + version: 3.3.5(ts-node@10.9.1) typescript: specifier: ^4.9.3 version: 4.9.5 vite: specifier: ^4.0.0 - version: 4.3.6(@types/node@20.1.5) + version: 4.3.9(@types/node@20.1.5) examples/solid/file-upload: dependencies: @@ -883,6 +883,13 @@ packages: '@babel/types': 7.22.5 dev: true + /@babel/helper-annotate-as-pure@7.22.5: + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.4 + dev: true + /@babel/helper-builder-binary-assignment-operator-visitor@7.21.5: resolution: {integrity: sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g==} engines: {node: '>=6.9.0'} @@ -1061,6 +1068,13 @@ packages: '@babel/types': 7.21.5 dev: true + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.23.4 + dev: true + /@babel/helper-module-imports@7.22.5: resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} engines: {node: '>=6.9.0'} @@ -1110,6 +1124,11 @@ packages: engines: {node: '>=6.9.0'} dev: true + /@babel/helper-plugin-utils@7.22.5: + resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.21.8): resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} @@ -1183,11 +1202,21 @@ packages: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} + /@babel/helper-string-parser@7.23.4: + resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-validator-identifier@7.19.1: resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} engines: {node: '>=6.9.0'} dev: true + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-validator-identifier@7.22.5: resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} engines: {node: '>=6.9.0'} @@ -1569,6 +1598,16 @@ packages: '@babel/helper-plugin-utils': 7.21.5 dev: true + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.22.9): + resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.9 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.21.8): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -1965,14 +2004,14 @@ packages: '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.21.8) dev: true - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.9): - resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9): + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.22.9) dev: true /@babel/plugin-transform-react-jsx-self@7.21.0(@babel/core@7.21.8): @@ -2009,18 +2048,18 @@ packages: '@babel/types': 7.21.5 dev: true - /@babel/plugin-transform-react-jsx@7.21.5(@babel/core@7.22.9): - resolution: {integrity: sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA==} + /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.22.9): + resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.22.9 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.22.5 - '@babel/helper-plugin-utils': 7.21.5 - '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.22.9) - '@babel/types': 7.22.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.22.9) + '@babel/types': 7.23.4 dev: true /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.21.8): @@ -2400,6 +2439,15 @@ packages: '@babel/helper-validator-identifier': 7.22.5 to-fast-properties: 2.0.0 + /@babel/types@7.23.4: + resolution: {integrity: sha512-7uIFwVYpoplT5jp/kVv6EF93VaJ8H+Yn5IczYiaAi98ajzjfoZfslet/e0sLh+wVBjb2qqIut1b0S26VSafsSQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + dev: true + /@cspotcode/source-map-support@0.8.1: resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} @@ -2645,8 +2693,8 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@headlessui/react@1.7.14(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-znzdq9PG8rkwcu9oQ2FwIy0ZFtP9Z7ycS+BAqJ3R5EIqC/0bJGvhT7193rFf+45i9nnPsYvCQVW4V/bB9Xc+gA==} + /@headlessui/react@1.7.17(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==} engines: {node: '>=10'} peerDependencies: react: ^16 || ^17 || ^18 @@ -2685,15 +2733,6 @@ packages: resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} dev: true - /@ipld/car@5.1.1: - resolution: {integrity: sha512-HoFTUqUJL9cPGhC9qRmHCvamfIsj1JllQSQ/Xu9/KN/VNJp8To9Ms4qiZPEMOwcrNFclfYqrahjGYbf4KL/d9A==} - engines: {node: '>=16.0.0', npm: '>=7.0.0'} - dependencies: - '@ipld/dag-cbor': 9.0.0 - cborg: 1.10.1 - multiformats: 11.0.2 - varint: 6.0.0 - /@ipld/car@5.2.4: resolution: {integrity: sha512-YoVXE/o5HLXKi/Oqh9Nhcn423sdn9brRFKnbUid68/1D332/XINcoyCTvBluFcCw/9IeiTx+sEAV+onXZ/A4eA==} engines: {node: '>=16.0.0', npm: '>=7.0.0'} @@ -2702,7 +2741,6 @@ packages: cborg: 4.0.5 multiformats: 12.1.3 varint: 6.0.0 - dev: false /@ipld/dag-cbor@9.0.0: resolution: {integrity: sha512-zdsiSiYDEOIDW7mmWOYWC9gukjXO+F8wqxz/LfN7iSwTfIyipC8+UQrCbPupFMRb/33XQTZk8yl3My8vUQBRoA==} @@ -2732,14 +2770,6 @@ packages: multiformats: 12.1.3 dev: false - /@ipld/dag-ucan@3.3.2: - resolution: {integrity: sha512-EhuOrAfnudsVYIbzEIgi3itHAEo3WZNOt1VNPsYhxKBhOzDMeoTXh6/IHc7ZKBW1T2vDQHdgj4m1r64z6MssGA==} - dependencies: - '@ipld/dag-cbor': 9.0.0 - '@ipld/dag-json': 10.0.1 - multiformats: 11.0.2 - dev: false - /@ipld/dag-ucan@3.4.0: resolution: {integrity: sha512-sW4R43w3DbEdoGWWJZCwsblwXa600HCanG9p2w1MJPVBNTNjhvqc3XI0uEqKhT2oqKWrND7uInVtcPmZme7hhA==} dependencies: @@ -2906,56 +2936,56 @@ packages: fsevents: 2.3.2 dev: true - /@preact/preset-vite@2.5.0(@babel/core@7.22.9)(preact@10.14.0)(vite@4.3.6): - resolution: {integrity: sha512-BUhfB2xQ6ex0yPkrT1Z3LbfPzjpJecOZwQ/xJrXGFSZD84+ObyS//41RdEoQCMWsM0t7UHGaujUxUBub7WM1Jw==} + /@preact/preset-vite@2.7.0(@babel/core@7.22.9)(preact@10.19.2)(vite@4.3.9): + resolution: {integrity: sha512-m5N0FVtxbCCDxNk55NGhsRpKJChYcupcuQHzMJc/Bll07IKZKn8amwYciyKFS9haU6AgzDAJ/ewvApr6Qg1DHw==} peerDependencies: '@babel/core': 7.x - vite: 2.x || 3.x || 4.x + vite: 2.x || 3.x || 4.x || 5.x dependencies: '@babel/core': 7.22.9 - '@babel/plugin-transform-react-jsx': 7.21.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.22.9) - '@prefresh/vite': 2.3.0(preact@10.14.0)(vite@4.3.6) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.22.9) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9) + '@prefresh/vite': 2.4.4(preact@10.19.2)(vite@4.3.9) '@rollup/pluginutils': 4.2.1 babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.22.9) debug: 4.3.4 kolorist: 1.8.0 - resolve: 1.22.2 - vite: 4.3.6(@types/node@20.1.5) + resolve: 1.22.8 + vite: 4.3.9(@types/node@20.1.5) transitivePeerDependencies: - preact - supports-color dev: true - /@prefresh/babel-plugin@0.5.0: - resolution: {integrity: sha512-joAwpkUDwo7ZqJnufXRGzUb+udk20RBgfA8oLPBh5aJH2LeStmV1luBfeJTztPdyCscC2j2SmZ/tVxFRMIxAEw==} + /@prefresh/babel-plugin@0.5.1: + resolution: {integrity: sha512-uG3jGEAysxWoyG3XkYfjYHgaySFrSsaEb4GagLzYaxlydbuREtaX+FTxuIidp241RaLl85XoHg9Ej6E4+V1pcg==} dev: true - /@prefresh/core@1.5.0(preact@10.14.0): - resolution: {integrity: sha512-C8zcVW77HD/jh47sLJ4vX2//qFrdr6kpBwsLDD84bSl2cvmCamZImnaDvimxrhxcN9oeC+8qnUl92SxQFQY0rg==} + /@prefresh/core@1.5.2(preact@10.19.2): + resolution: {integrity: sha512-A/08vkaM1FogrCII5PZKCrygxSsc11obExBScm3JF1CryK2uDS3ZXeni7FeKCx1nYdUkj4UcJxzPzc1WliMzZA==} peerDependencies: preact: ^10.0.0 dependencies: - preact: 10.14.0 + preact: 10.19.2 dev: true /@prefresh/utils@1.2.0: resolution: {integrity: sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==} dev: true - /@prefresh/vite@2.3.0(preact@10.14.0)(vite@4.3.6): - resolution: {integrity: sha512-3ekbngrfWYeKGTy54wPCwRx9qBPnMe0lVe33z0rWjW3rgXWTBVZusFLub5QgJYEZNjYjJJBlSv1flekIjpI5Rw==} + /@prefresh/vite@2.4.4(preact@10.19.2)(vite@4.3.9): + resolution: {integrity: sha512-7jcz3j5pXufOWTjl31n0Lc3BcU8oGoacoaWx/Ur1QJ+fd4Xu0G7g/ER1xV02x7DCiVoFi7xtSgaophOXoJvpmA==} peerDependencies: preact: ^10.4.0 - vite: '>=2.0.0-beta.3' + vite: '>=2.0.0' dependencies: '@babel/core': 7.22.9 - '@prefresh/babel-plugin': 0.5.0 - '@prefresh/core': 1.5.0(preact@10.14.0) + '@prefresh/babel-plugin': 0.5.1 + '@prefresh/core': 1.5.2(preact@10.19.2) '@prefresh/utils': 1.2.0 '@rollup/pluginutils': 4.2.1 - preact: 10.14.0 - vite: 4.3.6(@types/node@20.1.5) + preact: 10.19.2 + vite: 4.3.9(@types/node@20.1.5) transitivePeerDependencies: - supports-color dev: true @@ -3003,9 +3033,9 @@ packages: resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} dev: false - /@remix-run/router@1.6.1: - resolution: {integrity: sha512-YUkWj+xs0oOzBe74OgErsuR3wVn+efrFhXBWrit50kOiED+pvQe2r6MWY0iJMQU/mSVKxvNzL4ZaYvjdX+G7ZA==} - engines: {node: '>=14'} + /@remix-run/router@1.12.0: + resolution: {integrity: sha512-2hXv036Bux90e1GXTWSMfNzfDDK8LA8JYEWfyHxzvwdp6GyoWEovKc9cotb3KCKmkdwsIBuFGX7ScTWyiHv7Eg==} + engines: {node: '>=14.0.0'} dev: false /@rollup/plugin-babel@5.3.1(@babel/core@7.21.8)(rollup@2.79.1): @@ -3200,8 +3230,8 @@ packages: '@babel/types': 7.22.5 dev: true - /@types/blueimp-md5@2.18.0: - resolution: {integrity: sha512-f4A+++lGZGJvVSgeyMkqA7BEf2BVQli6F+qEykKb49c5ieWQBkfpn6CP5c1IZr2Yi2Ofl6Fj+v0e1fN18Z8Cnw==} + /@types/blueimp-md5@2.18.2: + resolution: {integrity: sha512-dJ9yRry9Olt5GAWlgCtE5dK9d/Dfhn/V7hna86eEO2Pn76+E8Y0S0n61iEUEGhWXXgtKtHxtZLVNwL8X+vLHzg==} dev: true /@types/chai-subset@1.3.3: @@ -3473,8 +3503,8 @@ packages: /@ucanto/core@9.0.0: resolution: {integrity: sha512-O2c+UOQ5wAvUsuN7BbZR6QAoUgYpWzN0HAAVbNBLT4I8/OUzMcxSYeu08/ph0sNtLGlOPDcPn+ANclTwxc5UcA==} dependencies: - '@ipld/car': 5.1.1 - '@ipld/dag-cbor': 9.0.0 + '@ipld/car': 5.2.4 + '@ipld/dag-cbor': 9.0.6 '@ipld/dag-ucan': 3.4.0 '@ucanto/interface': 9.0.0 multiformats: 11.0.2 @@ -3514,7 +3544,7 @@ packages: /@ucanto/validator@9.0.0: resolution: {integrity: sha512-ZgwVAHAMOzqNsl4fn1qTP1J5Y8oSB2qGn0NzMtSj2FwWzPUBog0WTXSiDqV6H60aNJt38l4pL+R4JaqUg0Z3uQ==} dependencies: - '@ipld/car': 5.1.1 + '@ipld/car': 5.2.4 '@ipld/dag-cbor': 9.0.0 '@ucanto/core': 9.0.0 '@ucanto/interface': 9.0.0 @@ -4126,16 +4156,16 @@ packages: when-exit: 2.1.1 dev: false - /autoprefixer@10.4.14(postcss@8.4.23): - resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} + /autoprefixer@10.4.16(postcss@8.4.23): + resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.5 - caniuse-lite: 1.0.30001487 - fraction.js: 4.2.0 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001564 + fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 postcss: 8.4.23 @@ -4308,6 +4338,17 @@ packages: update-browserslist-db: 1.0.11(browserslist@4.21.9) dev: true + /browserslist@4.22.1: + resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001564 + electron-to-chromium: 1.4.590 + node-releases: 2.0.13 + update-browserslist-db: 1.0.13(browserslist@4.22.1) + dev: true + /buffer-from@1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} @@ -4368,6 +4409,10 @@ packages: resolution: {integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==} dev: true + /caniuse-lite@1.0.30001564: + resolution: {integrity: sha512-DqAOf+rhof+6GVx1y+xzbFPeOumfQnhYzVnZD6LAXijR77yPtm9mfOcqOnT3mpnJiZVT+kwLAFnRlZcIz+c6bg==} + dev: true + /cborg@1.10.1: resolution: {integrity: sha512-et6Qm8MOUY2kCWa5GKk2MlBVoPjHv0hQBmlzI/Z7+5V3VJCeIkGehIB3vWknNsm2kOkAIs6wEKJFJo8luWQQ/w==} hasBin: true @@ -4870,6 +4915,10 @@ packages: resolution: {integrity: sha512-HRN9XQjElxJBrdDky5iiUUr3eDwXGTg6Cp4IV8MuNc8VqMkYSneSnIe6poFKx9PsNzkudCgaWCBVxwDqirwQWQ==} dev: true + /electron-to-chromium@1.4.590: + resolution: {integrity: sha512-hohItzsQcG7/FBsviCYMtQwUSWvVF7NVqPOnJCErWsAshsP/CR2LAXdmq276RbESNdhxiAq5/vRo1g2pxGXVww==} + dev: true + /emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} dev: true @@ -5718,6 +5767,17 @@ packages: micromatch: 4.0.5 dev: true + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + /fast-json-stable-stringify@2.1.0: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} dev: true @@ -5822,8 +5882,8 @@ packages: resolution: {integrity: sha512-rpE+Ex1Hke2lPMonENYjqNJSF00fQqDMlECV8KvCLUlkv+l/PkLeZfo2/VFu909hOJQfGXHk/TXrANic0Z/Ymg==} dev: false - /fraction.js@4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} dev: true /fs-extra@8.1.0: @@ -5849,6 +5909,10 @@ packages: /function-bind@1.1.1: resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + dev: true + /function.prototype.name@1.1.5: resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} engines: {node: '>= 0.4'} @@ -6034,6 +6098,13 @@ packages: dependencies: function-bind: 1.1.1 + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + dev: true + /hd-scripts@4.1.0: resolution: {integrity: sha512-nDWeib3SxaHZRz0YhRkOnBDT5LAyMx6BXITO5xsocUJh4bSaqn7ha/h9Zlhw0WLtfxSVEXv96kjp/LQts12B9A==} engines: {node: '>=14'} @@ -6249,6 +6320,12 @@ packages: dependencies: has: 1.0.3 + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + dependencies: + hasown: 2.0.0 + dev: true + /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} @@ -6534,8 +6611,8 @@ packages: supports-color: 7.2.0 dev: true - /jiti@1.18.2: - resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} + /jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} hasBin: true dev: true @@ -6693,6 +6770,11 @@ packages: engines: {node: '>=10'} dev: true + /lilconfig@3.0.0: + resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + engines: {node: '>=14'} + dev: true + /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true @@ -7420,8 +7502,8 @@ packages: postcss: 8.4.23 dev: true - /postcss-load-config@4.0.1(postcss@8.4.23)(ts-node@10.9.1): - resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} + /postcss-load-config@4.0.2(postcss@8.4.23)(ts-node@10.9.1): + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} engines: {node: '>= 14'} peerDependencies: postcss: '>=8.0.9' @@ -7432,10 +7514,10 @@ packages: ts-node: optional: true dependencies: - lilconfig: 2.1.0 + lilconfig: 3.0.0 postcss: 8.4.23 ts-node: 10.9.1(@types/node@20.1.5)(typescript@4.9.5) - yaml: 2.2.2 + yaml: 2.3.4 dev: true /postcss-nested@6.0.1(postcss@8.4.23): @@ -7468,8 +7550,8 @@ packages: picocolors: 1.0.0 source-map-js: 1.0.2 - /preact@10.14.0: - resolution: {integrity: sha512-4oh2sf208mKAdL5AQtzXxE387iSGNWMX/YjwMjH6m/XROILKAmx5Pbs2FsXrW7ixoVGGjpfYSBB833vOwYxNxw==} + /preact@10.19.2: + resolution: {integrity: sha512-UA9DX/OJwv6YwP9Vn7Ti/vF80XL+YA5H2l7BpCtUr3ya8LWHFzpiO5R+N7dN16ujpIxhekRFuOOF82bXX7K/lg==} /prelude-ls@1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} @@ -7616,26 +7698,26 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-router-dom@6.11.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-dPC2MhoPeTQ1YUOt5uIK376SMNWbwUxYRWk2ZmTT4fZfwlOvabF8uduRKKJIyfkCZvMgiF0GSCQckmkGGijIrg==} - engines: {node: '>=14'} + /react-router-dom@6.19.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-N6dWlcgL2w0U5HZUUqU2wlmOrSb3ighJmtQ438SWbhB1yuLTXQ8yyTBMK3BSvVjp7gBtKurT554nCtMOgxCZmQ==} + engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: - '@remix-run/router': 1.6.1 + '@remix-run/router': 1.12.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-router: 6.11.1(react@18.2.0) + react-router: 6.19.0(react@18.2.0) dev: false - /react-router@6.11.1(react@18.2.0): - resolution: {integrity: sha512-OZINSdjJ2WgvAi7hgNLazrEV8SGn6xrKA+MkJe9wVDMZ3zQ6fdJocUjpCUCI0cNrelWjcvon0S/QK/j0NzL3KA==} - engines: {node: '>=14'} + /react-router@6.19.0(react@18.2.0): + resolution: {integrity: sha512-0W63PKCZ7+OuQd7Tm+RbkI8kCLmn4GPjDbX61tWljPxWgqTKlEpeQUwPkT1DRjYhF8KSihK0hQpmhU4uxVMcdw==} + engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8' dependencies: - '@remix-run/router': 1.6.1 + '@remix-run/router': 1.12.0 react: 18.2.0 dev: false @@ -7797,6 +7879,15 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + /resolve@2.0.0-next.4: resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} hasBin: true @@ -8326,8 +8417,8 @@ packages: resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==} dev: false - /sucrase@3.32.0: - resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==} + /sucrase@3.34.0: + resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} engines: {node: '>=8'} hasBin: true dependencies: @@ -8366,8 +8457,8 @@ packages: dependencies: '@noble/hashes': 1.3.2 - /tailwindcss@3.3.2(ts-node@10.9.1): - resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==} + /tailwindcss@3.3.5(ts-node@10.9.1): + resolution: {integrity: sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==} engines: {node: '>=14.0.0'} hasBin: true dependencies: @@ -8376,10 +8467,10 @@ packages: chokidar: 3.5.3 didyoumean: 1.2.2 dlv: 1.1.3 - fast-glob: 3.2.12 + fast-glob: 3.3.2 glob-parent: 6.0.2 is-glob: 4.0.3 - jiti: 1.18.2 + jiti: 1.21.0 lilconfig: 2.1.0 micromatch: 4.0.5 normalize-path: 3.0.0 @@ -8388,12 +8479,11 @@ packages: postcss: 8.4.23 postcss-import: 15.1.0(postcss@8.4.23) postcss-js: 4.0.1(postcss@8.4.23) - postcss-load-config: 4.0.1(postcss@8.4.23)(ts-node@10.9.1) + postcss-load-config: 4.0.2(postcss@8.4.23)(ts-node@10.9.1) postcss-nested: 6.0.1(postcss@8.4.23) postcss-selector-parser: 6.0.13 - postcss-value-parser: 4.2.0 resolve: 1.22.2 - sucrase: 3.32.0 + sucrase: 3.34.0 transitivePeerDependencies: - ts-node dev: true @@ -8702,6 +8792,17 @@ packages: picocolors: 1.0.0 dev: true + /update-browserslist-db@1.0.13(browserslist@4.22.1): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.1 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + /update-check@1.5.4: resolution: {integrity: sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==} dependencies: @@ -9201,6 +9302,11 @@ packages: engines: {node: '>= 14'} dev: true + /yaml@2.3.4: + resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + engines: {node: '>= 14'} + dev: true + /yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} diff --git a/release-please-config.json b/release-please-config.json index 50c81b44..2c32c0e1 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -15,8 +15,6 @@ "packages/keyring-core": {}, "packages/uploader-core": {}, - "packages/uploads-list-core": {}, - - "examples/react/w3console": {} + "packages/uploads-list-core": {} } }