Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci: sync template files [skip ci] (#28)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

trueberryless-org[bot]
github-actions[bot]
and committed by
GitHub
e6be5d70 fc05b458

+86 -86
+5 -8
.github/labeler.yaml
··· 14 14 15 15 "✒️ documentation": 16 16 - changed-files: 17 - - any-glob-to-any-file: "**/README.md" 17 + - any-glob-to-any-file: ["**/docs/**", "**/README.md"] 18 18 19 19 "🌏 i18n": 20 20 - changed-files: 21 - - all-globs-to-any-file: ["**/docs/**", "!**/docs/en/**"] 22 - 23 - "🚀 manifest": 24 - - changed-files: 25 - - any-glob-to-any-file: "manifest*/**" 21 + - any-glob-to-any-file: 22 + - "**/docs/!(en)/" 23 + - "**/docs/[a-z][a-z]-[a-z][a-z]/**" 26 24 27 25 "📦 package": 28 26 - changed-files: 29 - - any-glob-to-any-file: "**/packages/**" 30 - - any-glob-to-any-file: "**/package.json" 27 + - any-glob-to-any-file: ["**/packages/**", "package.json"] 31 28 32 29 "🏯 styles": 33 30 - changed-files:
+4 -4
.github/workflows/format.yaml
··· 13 13 autofix: 14 14 runs-on: ubuntu-latest 15 15 steps: 16 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 16 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 17 17 with: 18 18 persist-credentials: false 19 19 20 20 - name: Setup PNPM 21 - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 21 + uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 22 22 23 23 - name: Setup Node 24 - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 24 + uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 25 25 with: 26 26 node-version: ${{ env.NODE_VERSION }} 27 27 cache: "pnpm" ··· 39 39 shopt -s globstar 40 40 find . -name '*.png' -exec pngquant --ext .png 256 {} \; 41 41 42 - - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 42 + - uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8
+2 -2
.github/workflows/labeler.yaml
··· 16 16 app_id: ${{ secrets.BOT_APP_ID }} 17 17 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 18 18 19 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 19 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 20 20 with: 21 21 persist-credentials: false 22 22 - name: Ensure labels exist ··· 32 32 gh label delete "invalid" --yes || true 33 33 gh label delete "question" --yes || true 34 34 gh label delete "wontfix" --yes || true 35 + gh label delete "🚀 manifest" --yes || true 35 36 36 37 gh label create "🚨 action" --description "Changes in GitHub workflows or actions" --color "A75AD5" --force 37 38 gh label create "🤖 bot" --description "Automatically generated pull request" --color "0075CA" --force ··· 45 46 gh label create "🆘 help wanted" --description "Extra attention is needed" --color "BFD4F2" --force 46 47 gh label create "🌏 i18n" --description "Updates to internationalized docs, excluding English" --color "006B75" --force 47 48 gh label create "👀 invalid" --description "This doesn't seem right" --color "E4E669" --force 48 - gh label create "🚀 manifest" --description "Manifest-related changes" --color "96D3D7" --force 49 49 gh label create "📦 package" --description "Updates in package structure or package.json" --color "F34A37" --force 50 50 gh label create "❓ question" --description "Further information is requested" --color "D876E3" --force 51 51 gh label create "🏯 styles" --description "Stylesheets or design updates" --color "550F5A" --force
+11 -11
.github/workflows/publish.yaml
··· 22 22 starlight-save-file-component: ${{ steps.filter.outputs.starlight-save-file-component }} 23 23 steps: 24 24 - name: Check out the repo 25 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 25 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 26 26 with: 27 27 persist-credentials: false 28 28 29 - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 29 + - uses: dorny/paths-filter@d1c1ffe0248fe513906c8e24db8ea791d46f8590 # v3.0.3 30 30 id: filter 31 31 with: 32 32 filters: | ··· 50 50 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 51 51 52 52 - name: Checkout Repo 53 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 53 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 54 54 with: 55 55 persist-credentials: false 56 56 57 57 - name: Setup PNPM 58 - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 58 + uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 59 59 60 60 - name: Setup Node 61 - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 61 + uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 62 62 with: 63 63 node-version: ${{ env.NODE_VERSION }} 64 64 cache: "pnpm" ··· 68 68 69 69 - name: Create Release Pull Request 70 70 id: changesets 71 - uses: changesets/action@e0145edc7d9d8679003495b11f87bd8ef63c0cba # v1.5.3 71 + uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf # v1.7.0 72 72 with: 73 73 commit: "ci: release" 74 74 title: "ci: release [skip netlify]" ··· 91 91 IMAGE_TAG: ${{ env.IMAGE_TAG }} 92 92 steps: 93 93 - name: Check out the repo 94 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 94 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 95 95 with: 96 96 persist-credentials: false 97 97 ··· 117 117 contents: write 118 118 id-token: write 119 119 steps: 120 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 120 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 121 121 with: 122 122 persist-credentials: false 123 123 124 124 - name: Setup PNPM 125 - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 125 + uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0 126 126 127 127 - name: Setup Node 128 - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 128 + uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0 129 129 with: 130 130 node-version: ${{ env.NODE_VERSION }} 131 131 cache: "pnpm" ··· 146 146 contents: write 147 147 steps: 148 148 - name: Check out the repo 149 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 149 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 150 150 with: 151 151 persist-credentials: false 152 152
+1 -1
.github/workflows/welcome-bot.yaml
··· 20 20 app_id: ${{ secrets.BOT_APP_ID }} 21 21 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 22 22 23 - - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 23 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 24 24 with: 25 25 persist-credentials: false 26 26 - name: Convert Repository Name to Title Case
+10
docs/package.json
··· 1 1 { 2 2 "name": "starlight-save-file-component-docs", 3 3 "version": "0.0.2", 4 + "homepage": "https://starlight-save-file-component.trueberryless.org", 5 + "bugs": { 6 + "url": "https://github.com/trueberryless-org/starlight-save-file-component/issues" 7 + }, 8 + "repository": { 9 + "type": "git", 10 + "url": "https://github.com/trueberryless-org/starlight-save-file-component.git" 11 + }, 12 + "license": "MIT", 13 + "author": "trueberryless <trueberryless@gmail.com> (https://trueberryless.org)", 4 14 "type": "module", 5 15 "scripts": { 6 16 "astro": "astro",
+3 -3
package.json
··· 15 15 "version": "pnpm changeset version && pnpm i --no-frozen-lockfile" 16 16 }, 17 17 "devDependencies": { 18 - "@changesets/changelog-github": "^0.5.2", 19 - "@changesets/cli": "^2.29.8", 18 + "@changesets/changelog-github": "^0.6.0", 19 + "@changesets/cli": "^2.30.0", 20 20 "@trivago/prettier-plugin-sort-imports": "6.0.2", 21 - "prettier": "3.7.4", 21 + "prettier": "3.8.1", 22 22 "prettier-plugin-astro": "0.14.1" 23 23 }, 24 24 "packageManager": "pnpm@10.10.0"
+1 -1
packages/starlight-save-file-component/README.md
··· 2 2 3 3 Licensed under the MIT license, Copyright © trueberryless. 4 4 5 - See [LICENSE](/LICENSE) for more information. 5 + See [LICENSE](https://github.com/trueberryless-org/starlight-save-file-component/blob/main/LICENSE) for more information.
+1 -1
packages/starlight-save-file-component/package.json
··· 11 11 "save", 12 12 "file" 13 13 ], 14 - "homepage": "https://github.com/trueberryless-org/starlight-save-file-component", 14 + "homepage": "https://starlight-save-file-component.trueberryless.org", 15 15 "bugs": { 16 16 "url": "https://github.com/trueberryless-org/starlight-save-file-component/issues" 17 17 },
+48 -55
pnpm-lock.yaml
··· 9 9 .: 10 10 devDependencies: 11 11 '@changesets/changelog-github': 12 - specifier: ^0.5.2 13 - version: 0.5.2 12 + specifier: ^0.6.0 13 + version: 0.6.0 14 14 '@changesets/cli': 15 - specifier: ^2.29.8 16 - version: 2.29.8(@types/node@24.9.2) 15 + specifier: ^2.30.0 16 + version: 2.30.0(@types/node@24.9.2) 17 17 '@trivago/prettier-plugin-sort-imports': 18 18 specifier: 6.0.2 19 - version: 6.0.2(prettier@3.7.4) 19 + version: 6.0.2(prettier@3.8.1) 20 20 prettier: 21 - specifier: 3.7.4 22 - version: 3.7.4 21 + specifier: 3.8.1 22 + version: 3.8.1 23 23 prettier-plugin-astro: 24 24 specifier: 0.14.1 25 25 version: 0.14.1 ··· 155 155 resolution: {integrity: sha512-+ntATQe1AlL7nTOYjwjj6w3299CgRot48wL761TUGYpYgAou3AaONZazp0PKZyCyWhudWsjhq1nvRHOvbMzhTA==} 156 156 engines: {node: '>=18'} 157 157 158 - '@changesets/apply-release-plan@7.0.14': 159 - resolution: {integrity: sha512-ddBvf9PHdy2YY0OUiEl3TV78mH9sckndJR14QAt87KLEbIov81XO0q0QAmvooBxXlqRRP8I9B7XOzZwQG7JkWA==} 158 + '@changesets/apply-release-plan@7.1.0': 159 + resolution: {integrity: sha512-yq8ML3YS7koKQ/9bk1PqO0HMzApIFNwjlwCnwFEXMzNe8NpzeeYYKCmnhWJGkN8g7E51MnWaSbqRcTcdIxUgnQ==} 160 160 161 161 '@changesets/assemble-release-plan@6.0.9': 162 162 resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==} ··· 164 164 '@changesets/changelog-git@0.2.1': 165 165 resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==} 166 166 167 - '@changesets/changelog-github@0.5.2': 168 - resolution: {integrity: sha512-HeGeDl8HaIGj9fQHo/tv5XKQ2SNEi9+9yl1Bss1jttPqeiASRXhfi0A2wv8yFKCp07kR1gpOI5ge6+CWNm1jPw==} 167 + '@changesets/changelog-github@0.6.0': 168 + resolution: {integrity: sha512-wA2/y4hR/A1K411cCT75rz0d46Iezxp1WYRFoFJDIUpkQ6oDBAIUiU7BZkDCmYgz0NBl94X1lgcZO+mHoiHnFg==} 169 169 170 - '@changesets/cli@2.29.8': 171 - resolution: {integrity: sha512-1weuGZpP63YWUYjay/E84qqwcnt5yJMM0tep10Up7Q5cS/DGe2IZ0Uj3HNMxGhCINZuR7aO9WBMdKnPit5ZDPA==} 170 + '@changesets/cli@2.30.0': 171 + resolution: {integrity: sha512-5D3Nk2JPqMI1wK25pEymeWRSlSMdo5QOGlyfrKg0AOufrUcjEE3RQgaCpHoBiM31CSNrtSgdJ0U6zL1rLDDfBA==} 172 172 hasBin: true 173 173 174 - '@changesets/config@3.1.2': 175 - resolution: {integrity: sha512-CYiRhA4bWKemdYi/uwImjPxqWNpqGPNbEBdX1BdONALFIDK7MCUj6FPkzD+z9gJcvDFUQJn9aDVf4UG7OT6Kog==} 174 + '@changesets/config@3.1.3': 175 + resolution: {integrity: sha512-vnXjcey8YgBn2L1OPWd3ORs0bGC4LoYcK/ubpgvzNVr53JXV5GiTVj7fWdMRsoKUH7hhhMAQnsJUqLr21EncNw==} 176 176 177 177 '@changesets/errors@0.2.0': 178 178 resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} ··· 180 180 '@changesets/get-dependents-graph@2.1.3': 181 181 resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==} 182 182 183 - '@changesets/get-github-info@0.7.0': 184 - resolution: {integrity: sha512-+i67Bmhfj9V4KfDeS1+Tz3iF32btKZB2AAx+cYMqDSRFP7r3/ZdGbjCo+c6qkyViN9ygDuBjzageuPGJtKGe5A==} 183 + '@changesets/get-github-info@0.8.0': 184 + resolution: {integrity: sha512-cRnC+xdF0JIik7coko3iUP9qbnfi1iJQ3sAa6dE+Tx3+ET8bjFEm63PA4WEohgjYcmsOikPHWzPsMWWiZmntOQ==} 185 185 186 - '@changesets/get-release-plan@4.0.14': 187 - resolution: {integrity: sha512-yjZMHpUHgl4Xl5gRlolVuxDkm4HgSJqT93Ri1Uz8kGrQb+5iJ8dkXJ20M2j/Y4iV5QzS2c5SeTxVSKX+2eMI0g==} 186 + '@changesets/get-release-plan@4.0.15': 187 + resolution: {integrity: sha512-Q04ZaRPuEVZtA+auOYgFaVQQSA98dXiVe/yFaZfY7hoSmQICHGvP0TF4u3EDNHWmmCS4ekA/XSpKlSM2PyTS2g==} 188 188 189 189 '@changesets/get-version-range-type@0.4.0': 190 190 resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} ··· 195 195 '@changesets/logger@0.1.1': 196 196 resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} 197 197 198 - '@changesets/parse@0.4.2': 199 - resolution: {integrity: sha512-Uo5MC5mfg4OM0jU3up66fmSn6/NE9INK+8/Vn/7sMVcdWg46zfbvvUSjD9EMonVqPi9fbrJH9SXHn48Tr1f2yA==} 198 + '@changesets/parse@0.4.3': 199 + resolution: {integrity: sha512-ZDmNc53+dXdWEv7fqIUSgRQOLYoUom5Z40gmLgmATmYR9NbL6FJJHwakcCpzaeCy+1D0m0n7mT4jj2B/MQPl7A==} 200 200 201 201 '@changesets/pre@2.0.2': 202 202 resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==} 203 203 204 - '@changesets/read@0.6.6': 205 - resolution: {integrity: sha512-P5QaN9hJSQQKJShzzpBT13FzOSPyHbqdoIBUd2DJdgvnECCyO6LmAOWSV+O8se2TaZJVwSXjL+v9yhb+a9JeJg==} 204 + '@changesets/read@0.6.7': 205 + resolution: {integrity: sha512-D1G4AUYGrBEk8vj8MGwf75k9GpN6XL3wg8i42P2jZZwFLXnlr2Pn7r9yuQNbaMCarP7ZQWNJbV6XLeysAIMhTA==} 206 206 207 207 '@changesets/should-skip-package@0.1.2': 208 208 resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==} ··· 984 984 chokidar@4.0.3: 985 985 resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 986 986 engines: {node: '>= 14.16.0'} 987 - 988 - ci-info@3.9.0: 989 - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} 990 - engines: {node: '>=8'} 991 987 992 988 ci-info@4.3.1: 993 989 resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==} ··· 1923 1919 engines: {node: '>=10.13.0'} 1924 1920 hasBin: true 1925 1921 1926 - prettier@3.7.4: 1927 - resolution: {integrity: sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==} 1922 + prettier@3.8.1: 1923 + resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} 1928 1924 engines: {node: '>=14'} 1929 1925 hasBin: true 1930 1926 ··· 2549 2545 hast-util-from-html: 2.0.3 2550 2546 hast-util-to-text: 4.0.2 2551 2547 import-meta-resolve: 4.2.0 2552 - js-yaml: 4.1.0 2548 + js-yaml: 4.1.1 2553 2549 mdast-util-definitions: 6.0.0 2554 2550 rehype-raw: 7.0.0 2555 2551 rehype-stringify: 10.0.1 ··· 2695 2691 dependencies: 2696 2692 fontkit: 2.0.4 2697 2693 2698 - '@changesets/apply-release-plan@7.0.14': 2694 + '@changesets/apply-release-plan@7.1.0': 2699 2695 dependencies: 2700 - '@changesets/config': 3.1.2 2696 + '@changesets/config': 3.1.3 2701 2697 '@changesets/get-version-range-type': 0.4.0 2702 2698 '@changesets/git': 3.0.4 2703 2699 '@changesets/should-skip-package': 0.1.2 ··· 2724 2720 dependencies: 2725 2721 '@changesets/types': 6.1.0 2726 2722 2727 - '@changesets/changelog-github@0.5.2': 2723 + '@changesets/changelog-github@0.6.0': 2728 2724 dependencies: 2729 - '@changesets/get-github-info': 0.7.0 2725 + '@changesets/get-github-info': 0.8.0 2730 2726 '@changesets/types': 6.1.0 2731 2727 dotenv: 8.6.0 2732 2728 transitivePeerDependencies: 2733 2729 - encoding 2734 2730 2735 - '@changesets/cli@2.29.8(@types/node@24.9.2)': 2731 + '@changesets/cli@2.30.0(@types/node@24.9.2)': 2736 2732 dependencies: 2737 - '@changesets/apply-release-plan': 7.0.14 2733 + '@changesets/apply-release-plan': 7.1.0 2738 2734 '@changesets/assemble-release-plan': 6.0.9 2739 2735 '@changesets/changelog-git': 0.2.1 2740 - '@changesets/config': 3.1.2 2736 + '@changesets/config': 3.1.3 2741 2737 '@changesets/errors': 0.2.0 2742 2738 '@changesets/get-dependents-graph': 2.1.3 2743 - '@changesets/get-release-plan': 4.0.14 2739 + '@changesets/get-release-plan': 4.0.15 2744 2740 '@changesets/git': 3.0.4 2745 2741 '@changesets/logger': 0.1.1 2746 2742 '@changesets/pre': 2.0.2 2747 - '@changesets/read': 0.6.6 2743 + '@changesets/read': 0.6.7 2748 2744 '@changesets/should-skip-package': 0.1.2 2749 2745 '@changesets/types': 6.1.0 2750 2746 '@changesets/write': 0.4.0 2751 2747 '@inquirer/external-editor': 1.0.2(@types/node@24.9.2) 2752 2748 '@manypkg/get-packages': 1.1.3 2753 2749 ansi-colors: 4.1.3 2754 - ci-info: 3.9.0 2755 2750 enquirer: 2.4.1 2756 2751 fs-extra: 7.0.1 2757 2752 mri: 1.2.0 2758 - p-limit: 2.3.0 2759 2753 package-manager-detector: 0.2.11 2760 2754 picocolors: 1.1.1 2761 2755 resolve-from: 5.0.0 ··· 2765 2759 transitivePeerDependencies: 2766 2760 - '@types/node' 2767 2761 2768 - '@changesets/config@3.1.2': 2762 + '@changesets/config@3.1.3': 2769 2763 dependencies: 2770 2764 '@changesets/errors': 0.2.0 2771 2765 '@changesets/get-dependents-graph': 2.1.3 2772 2766 '@changesets/logger': 0.1.1 2767 + '@changesets/should-skip-package': 0.1.2 2773 2768 '@changesets/types': 6.1.0 2774 2769 '@manypkg/get-packages': 1.1.3 2775 2770 fs-extra: 7.0.1 ··· 2786 2781 picocolors: 1.1.1 2787 2782 semver: 7.7.3 2788 2783 2789 - '@changesets/get-github-info@0.7.0': 2784 + '@changesets/get-github-info@0.8.0': 2790 2785 dependencies: 2791 2786 dataloader: 1.4.0 2792 2787 node-fetch: 2.7.0 2793 2788 transitivePeerDependencies: 2794 2789 - encoding 2795 2790 2796 - '@changesets/get-release-plan@4.0.14': 2791 + '@changesets/get-release-plan@4.0.15': 2797 2792 dependencies: 2798 2793 '@changesets/assemble-release-plan': 6.0.9 2799 - '@changesets/config': 3.1.2 2794 + '@changesets/config': 3.1.3 2800 2795 '@changesets/pre': 2.0.2 2801 - '@changesets/read': 0.6.6 2796 + '@changesets/read': 0.6.7 2802 2797 '@changesets/types': 6.1.0 2803 2798 '@manypkg/get-packages': 1.1.3 2804 2799 ··· 2816 2811 dependencies: 2817 2812 picocolors: 1.1.1 2818 2813 2819 - '@changesets/parse@0.4.2': 2814 + '@changesets/parse@0.4.3': 2820 2815 dependencies: 2821 2816 '@changesets/types': 6.1.0 2822 2817 js-yaml: 4.1.1 ··· 2828 2823 '@manypkg/get-packages': 1.1.3 2829 2824 fs-extra: 7.0.1 2830 2825 2831 - '@changesets/read@0.6.6': 2826 + '@changesets/read@0.6.7': 2832 2827 dependencies: 2833 2828 '@changesets/git': 3.0.4 2834 2829 '@changesets/logger': 0.1.1 2835 - '@changesets/parse': 0.4.2 2830 + '@changesets/parse': 0.4.3 2836 2831 '@changesets/types': 6.1.0 2837 2832 fs-extra: 7.0.1 2838 2833 p-filter: 2.1.0 ··· 3280 3275 dependencies: 3281 3276 tslib: 2.8.1 3282 3277 3283 - '@trivago/prettier-plugin-sort-imports@6.0.2(prettier@3.7.4)': 3278 + '@trivago/prettier-plugin-sort-imports@6.0.2(prettier@3.8.1)': 3284 3279 dependencies: 3285 3280 '@babel/generator': 7.28.5 3286 3281 '@babel/parser': 7.28.5 ··· 3290 3285 lodash-es: 4.17.22 3291 3286 minimatch: 9.0.5 3292 3287 parse-imports-exports: 0.2.4 3293 - prettier: 3.7.4 3288 + prettier: 3.8.1 3294 3289 transitivePeerDependencies: 3295 3290 - supports-color 3296 3291 ··· 3577 3572 chokidar@4.0.3: 3578 3573 dependencies: 3579 3574 readdirp: 4.1.2 3580 - 3581 - ci-info@3.9.0: {} 3582 3575 3583 3576 ci-info@4.3.1: {} 3584 3577 ··· 4908 4901 prettier-plugin-astro@0.14.1: 4909 4902 dependencies: 4910 4903 '@astrojs/compiler': 2.13.0 4911 - prettier: 3.7.4 4904 + prettier: 3.8.1 4912 4905 sass-formatter: 0.7.9 4913 4906 4914 4907 prettier@2.8.8: {} 4915 4908 4916 - prettier@3.7.4: {} 4909 + prettier@3.8.1: {} 4917 4910 4918 4911 prismjs@1.30.0: {} 4919 4912