Mirror of
0
fork

Configure Feed

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

ci: update GitHub template files (#53)

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
fe27ebfb ccd1903f

+223 -84
-1
.github/CODEOWNERS
··· 1 - * @trueberryless
+2
.github/renovate.json
··· 12 12 "rangeStrategy": "bump", 13 13 "ignorePaths": ["**/node_modules/**"], 14 14 "commitMessageSuffix": "[skip ci]", 15 + "assignees": [], 16 + "reviewers": [], 15 17 "packageRules": [ 16 18 { 17 19 "groupName": "github-actions",
+9 -4
.github/workflows/format.yaml
··· 6 6 permissions: 7 7 contents: read 8 8 9 + env: 10 + NODE_VERSION: 24.10.0 11 + 9 12 jobs: 10 13 autofix: 11 14 runs-on: ubuntu-latest 12 15 steps: 13 - - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 16 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 17 + with: 18 + persist-credentials: false 14 19 15 20 - name: Setup PNPM 16 - uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 21 + uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 17 22 18 23 - name: Setup Node 19 - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 24 + uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 20 25 with: 21 - node-version: 20.19.5 26 + node-version: ${{ env.NODE_VERSION }} 22 27 cache: "pnpm" 23 28 24 29 - name: Install Dependencies
+4 -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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 19 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 20 + with: 21 + persist-credentials: false 20 22 - name: Ensure labels exist 21 23 env: 22 24 GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} ··· 49 51 gh label create "🏯 styles" --description "Stylesheets or design updates" --color "550F5A" --force 50 52 gh label create "🔒 wontfix" --description "This will not be worked on" --color "FFFFFF" --force 51 53 52 - - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5 54 + - uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1 53 55 with: 54 56 configuration-path: .github/labeler.yaml 55 57 sync-labels: true
+3 -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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 23 + - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 24 + with: 25 + persist-credentials: false 24 26 - name: Convert Repository Name to Title Case 25 27 id: convert_repo_name 26 28 run: |
+126 -19
.gitignore
··· 1 - # build output 2 - dist/ 3 - # generated types 4 - .astro/ 1 + # Logs 2 + logs 3 + *.log 4 + npm-debug.log* 5 + yarn-debug.log* 6 + yarn-error.log* 7 + lerna-debug.log* 8 + .pnpm-debug.log* 9 + 10 + # Diagnostic reports (https://nodejs.org/api/report.html) 11 + report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 + 13 + # Runtime data 14 + pids 15 + *.pid 16 + *.seed 17 + *.pid.lock 18 + 19 + # Directory for instrumented libs generated by jscoverage/JSCover 20 + lib-cov 21 + 22 + # Coverage directory used by tools like istanbul 23 + coverage 24 + *.lcov 25 + 26 + # nyc test coverage 27 + .nyc_output 28 + 29 + # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 + .grunt 31 + 32 + # Bower dependency directory (https://bower.io/) 33 + bower_components 34 + 35 + # node-waf configuration 36 + .lock-wscript 37 + 38 + # Compiled binary addons (https://nodejs.org/api/addons.html) 39 + build/Release 5 40 6 - # dependencies 41 + # Dependency directories 7 42 node_modules/ 43 + jspm_packages/ 8 44 9 - # logs 10 - npm-debug.log* 11 - yarn-debug.log* 12 - yarn-error.log* 13 - pnpm-debug.log* 45 + # Snowpack dependency directory (https://snowpack.dev/) 46 + web_modules/ 47 + 48 + # TypeScript cache 49 + *.tsbuildinfo 50 + 51 + # Optional npm cache directory 52 + .npm 53 + 54 + # Optional eslint cache 55 + .eslintcache 56 + 57 + # Optional stylelint cache 58 + .stylelintcache 59 + 60 + # Microbundle cache 61 + .rpt2_cache/ 62 + .rts2_cache_cjs/ 63 + .rts2_cache_es/ 64 + .rts2_cache_umd/ 65 + 66 + # Optional REPL history 67 + .node_repl_history 68 + 69 + # Output of 'npm pack' 70 + *.tgz 14 71 72 + # Yarn Integrity file 73 + .yarn-integrity 15 74 16 - # environment variables 75 + # dotenv environment variable files 17 76 .env 18 - .env.production 19 - .env*.local 77 + .env.development.local 78 + .env.test.local 79 + .env.production.local 80 + .env.local 20 81 21 - # macOS-specific files 22 - .DS_Store 82 + # parcel-bundler cache (https://parceljs.org/) 83 + .cache 84 + .parcel-cache 23 85 24 - # jetbrains setting folder 25 - .idea/ 86 + # Astro 87 + .astro 26 88 27 - # Local Netlify folder 28 - .netlify 89 + # Next.js build output 90 + .next 91 + out 92 + 93 + # Nuxt.js build / generate output 94 + .nuxt 95 + dist 96 + .output 97 + 98 + # Gatsby files 99 + .cache/ 100 + # Comment in the public line in if your project uses Gatsby and not Next.js 101 + # https://nextjs.org/blog/next-9-1#public-directory-support 102 + # public 103 + 104 + # vuepress build output 105 + .vuepress/dist 106 + 107 + # vuepress v2.x temp and cache directory 108 + .temp 109 + .cache 110 + 111 + # Docusaurus cache and generated files 112 + .docusaurus 113 + 114 + # Serverless directories 115 + .serverless/ 116 + 117 + # FuseBox cache 118 + .fusebox/ 119 + 120 + # DynamoDB Local files 121 + .dynamodb/ 122 + 123 + # TernJS port file 124 + .tern-port 125 + 126 + # Stores VSCode versions used for (testing) VSCode extensions 127 + .vscode 128 + .vscode-test 129 + 130 + # yarn v2 131 + .yarn/cache 132 + .yarn/unplugged 133 + .yarn/build-state.yml 134 + .yarn/install-state.gz 135 + .pnp.*
+5 -5
package.json
··· 1 1 { 2 2 "name": "release-image-generator", 3 3 "version": "0.5.0", 4 - "homepage": "https://release-image-generator.trueberryless.org", 4 + "homepage": "https://github.com/trueberryless-org/release-image-generator", 5 5 "bugs": { 6 6 "url": "https://github.com/trueberryless-org/release-image-generator/issues" 7 7 }, ··· 26 26 "culori": "^4.0.2" 27 27 }, 28 28 "devDependencies": { 29 - "@changesets/changelog-github": "^0.5.1", 30 - "@changesets/cli": "^2.29.7", 31 - "@trivago/prettier-plugin-sort-imports": "5.2.2", 29 + "@changesets/changelog-github": "^0.5.2", 30 + "@changesets/cli": "^2.29.8", 31 + "@trivago/prettier-plugin-sort-imports": "6.0.2", 32 32 "@types/culori": "^4.0.1", 33 33 "@types/node": "^20.10.0", 34 - "prettier": "3.5.3", 34 + "prettier": "3.7.4", 35 35 "prettier-plugin-astro": "0.14.1", 36 36 "typescript": "^5.3.3" 37 37 },
+74 -52
pnpm-lock.yaml
··· 22 22 version: 4.0.2 23 23 devDependencies: 24 24 '@changesets/changelog-github': 25 - specifier: ^0.5.1 26 - version: 0.5.1 25 + specifier: ^0.5.2 26 + version: 0.5.2 27 27 '@changesets/cli': 28 - specifier: ^2.29.7 29 - version: 2.29.7(@types/node@20.19.24) 28 + specifier: ^2.29.8 29 + version: 2.29.8(@types/node@20.19.24) 30 30 '@trivago/prettier-plugin-sort-imports': 31 - specifier: 5.2.2 32 - version: 5.2.2(@vue/compiler-sfc@3.5.24)(prettier@3.5.3) 31 + specifier: 6.0.2 32 + version: 6.0.2(@vue/compiler-sfc@3.5.24)(prettier@3.7.4) 33 33 '@types/culori': 34 34 specifier: ^4.0.1 35 35 version: 4.0.1 ··· 37 37 specifier: ^20.10.0 38 38 version: 20.19.24 39 39 prettier: 40 - specifier: 3.5.3 41 - version: 3.5.3 40 + specifier: 3.7.4 41 + version: 3.7.4 42 42 prettier-plugin-astro: 43 43 specifier: 0.14.1 44 44 version: 0.14.1 ··· 121 121 resolution: {integrity: sha512-8XqW8xGn++Eqqbz3e9wKuK7mxryeRjs4LOHLxbh2lwKeSbuNR4NFifDZT4KzvjU6HMOPbiNTsWpniK5EJfTWkg==} 122 122 engines: {node: '>=18'} 123 123 124 - '@changesets/apply-release-plan@7.0.13': 125 - resolution: {integrity: sha512-BIW7bofD2yAWoE8H4V40FikC+1nNFEKBisMECccS16W1rt6qqhNTBDmIw5HaqmMgtLNz9e7oiALiEUuKrQ4oHg==} 124 + '@changesets/apply-release-plan@7.0.14': 125 + resolution: {integrity: sha512-ddBvf9PHdy2YY0OUiEl3TV78mH9sckndJR14QAt87KLEbIov81XO0q0QAmvooBxXlqRRP8I9B7XOzZwQG7JkWA==} 126 126 127 127 '@changesets/assemble-release-plan@6.0.9': 128 128 resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==} ··· 130 130 '@changesets/changelog-git@0.2.1': 131 131 resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==} 132 132 133 - '@changesets/changelog-github@0.5.1': 134 - resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==} 133 + '@changesets/changelog-github@0.5.2': 134 + resolution: {integrity: sha512-HeGeDl8HaIGj9fQHo/tv5XKQ2SNEi9+9yl1Bss1jttPqeiASRXhfi0A2wv8yFKCp07kR1gpOI5ge6+CWNm1jPw==} 135 135 136 - '@changesets/cli@2.29.7': 137 - resolution: {integrity: sha512-R7RqWoaksyyKXbKXBTbT4REdy22yH81mcFK6sWtqSanxUCbUi9Uf+6aqxZtDQouIqPdem2W56CdxXgsxdq7FLQ==} 136 + '@changesets/cli@2.29.8': 137 + resolution: {integrity: sha512-1weuGZpP63YWUYjay/E84qqwcnt5yJMM0tep10Up7Q5cS/DGe2IZ0Uj3HNMxGhCINZuR7aO9WBMdKnPit5ZDPA==} 138 138 hasBin: true 139 139 140 - '@changesets/config@3.1.1': 141 - resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==} 140 + '@changesets/config@3.1.2': 141 + resolution: {integrity: sha512-CYiRhA4bWKemdYi/uwImjPxqWNpqGPNbEBdX1BdONALFIDK7MCUj6FPkzD+z9gJcvDFUQJn9aDVf4UG7OT6Kog==} 142 142 143 143 '@changesets/errors@0.2.0': 144 144 resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} ··· 146 146 '@changesets/get-dependents-graph@2.1.3': 147 147 resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==} 148 148 149 - '@changesets/get-github-info@0.6.0': 150 - resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} 149 + '@changesets/get-github-info@0.7.0': 150 + resolution: {integrity: sha512-+i67Bmhfj9V4KfDeS1+Tz3iF32btKZB2AAx+cYMqDSRFP7r3/ZdGbjCo+c6qkyViN9ygDuBjzageuPGJtKGe5A==} 151 151 152 - '@changesets/get-release-plan@4.0.13': 153 - resolution: {integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==} 152 + '@changesets/get-release-plan@4.0.14': 153 + resolution: {integrity: sha512-yjZMHpUHgl4Xl5gRlolVuxDkm4HgSJqT93Ri1Uz8kGrQb+5iJ8dkXJ20M2j/Y4iV5QzS2c5SeTxVSKX+2eMI0g==} 154 154 155 155 '@changesets/get-version-range-type@0.4.0': 156 156 resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} ··· 161 161 '@changesets/logger@0.1.1': 162 162 resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} 163 163 164 - '@changesets/parse@0.4.1': 165 - resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==} 164 + '@changesets/parse@0.4.2': 165 + resolution: {integrity: sha512-Uo5MC5mfg4OM0jU3up66fmSn6/NE9INK+8/Vn/7sMVcdWg46zfbvvUSjD9EMonVqPi9fbrJH9SXHn48Tr1f2yA==} 166 166 167 167 '@changesets/pre@2.0.2': 168 168 resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==} 169 169 170 - '@changesets/read@0.6.5': 171 - resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==} 170 + '@changesets/read@0.6.6': 171 + resolution: {integrity: sha512-P5QaN9hJSQQKJShzzpBT13FzOSPyHbqdoIBUd2DJdgvnECCyO6LmAOWSV+O8se2TaZJVwSXjL+v9yhb+a9JeJg==} 172 172 173 173 '@changesets/should-skip-package@0.1.2': 174 174 resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==} ··· 1201 1201 '@swc/helpers@0.5.17': 1202 1202 resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} 1203 1203 1204 - '@trivago/prettier-plugin-sort-imports@5.2.2': 1205 - resolution: {integrity: sha512-fYDQA9e6yTNmA13TLVSA+WMQRc5Bn/c0EUBditUHNfMMxN7M82c38b1kEggVE3pLpZ0FwkwJkUEKMiOi52JXFA==} 1206 - engines: {node: '>18.12'} 1204 + '@trivago/prettier-plugin-sort-imports@6.0.2': 1205 + resolution: {integrity: sha512-3DgfkukFyC/sE/VuYjaUUWoFfuVjPK55vOFDsxD56XXynFMCZDYFogH2l/hDfOsQAm1myoU/1xByJ3tWqtulXA==} 1206 + engines: {node: '>= 20'} 1207 1207 peerDependencies: 1208 1208 '@vue/compiler-sfc': 3.x 1209 1209 prettier: 2.x - 3.x 1210 + prettier-plugin-ember-template-tag: '>= 2.0.0' 1210 1211 prettier-plugin-svelte: 3.x 1211 1212 svelte: 4.x || 5.x 1212 1213 peerDependenciesMeta: 1213 1214 '@vue/compiler-sfc': 1215 + optional: true 1216 + prettier-plugin-ember-template-tag: 1214 1217 optional: true 1215 1218 prettier-plugin-svelte: 1216 1219 optional: true ··· 2475 2478 resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} 2476 2479 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2477 2480 2481 + lodash-es@4.17.22: 2482 + resolution: {integrity: sha512-XEawp1t0gxSi9x01glktRZ5HDy0HXqrM0x5pXQM98EaI0NxO6jVM7omDOxsuEo5UIASAnm2bRp1Jt/e0a2XU8Q==} 2483 + 2478 2484 lodash.includes@4.3.0: 2479 2485 resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} 2480 2486 ··· 2924 2930 parse-gitignore@2.0.0: 2925 2931 resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} 2926 2932 engines: {node: '>=14'} 2933 + 2934 + parse-imports-exports@0.2.4: 2935 + resolution: {integrity: sha512-4s6vd6dx1AotCx/RCI2m7t7GCh5bDRUtGNvRfHSP2wbBQdMi67pPe7mtzmgwcaQ8VKK/6IB7Glfyu3qdZJPybQ==} 2927 2936 2928 2937 parse-imports@2.2.1: 2929 2938 resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==} ··· 2936 2945 parse-latin@7.0.0: 2937 2946 resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 2938 2947 2948 + parse-statements@1.0.11: 2949 + resolution: {integrity: sha512-HlsyYdMBnbPQ9Jr/VgJ1YF4scnldvJpJxCVx6KgqPL4dxppsWrJHCIIxQXMJrqGnsRkNPATbeMJ8Yxu7JMsYcA==} 2950 + 2939 2951 parse5@7.3.0: 2940 2952 resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 2941 2953 ··· 3029 3041 engines: {node: '>=10.13.0'} 3030 3042 hasBin: true 3031 3043 3032 - prettier@3.5.3: 3033 - resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 3044 + prettier@3.7.4: 3045 + resolution: {integrity: sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==} 3034 3046 engines: {node: '>=14'} 3035 3047 hasBin: true 3036 3048 ··· 3956 3968 dependencies: 3957 3969 fontkit: 2.0.4 3958 3970 3959 - '@changesets/apply-release-plan@7.0.13': 3971 + '@changesets/apply-release-plan@7.0.14': 3960 3972 dependencies: 3961 - '@changesets/config': 3.1.1 3973 + '@changesets/config': 3.1.2 3962 3974 '@changesets/get-version-range-type': 0.4.0 3963 3975 '@changesets/git': 3.0.4 3964 3976 '@changesets/should-skip-package': 0.1.2 ··· 3985 3997 dependencies: 3986 3998 '@changesets/types': 6.1.0 3987 3999 3988 - '@changesets/changelog-github@0.5.1': 4000 + '@changesets/changelog-github@0.5.2': 3989 4001 dependencies: 3990 - '@changesets/get-github-info': 0.6.0 4002 + '@changesets/get-github-info': 0.7.0 3991 4003 '@changesets/types': 6.1.0 3992 4004 dotenv: 8.6.0 3993 4005 transitivePeerDependencies: 3994 4006 - encoding 3995 4007 3996 - '@changesets/cli@2.29.7(@types/node@20.19.24)': 4008 + '@changesets/cli@2.29.8(@types/node@20.19.24)': 3997 4009 dependencies: 3998 - '@changesets/apply-release-plan': 7.0.13 4010 + '@changesets/apply-release-plan': 7.0.14 3999 4011 '@changesets/assemble-release-plan': 6.0.9 4000 4012 '@changesets/changelog-git': 0.2.1 4001 - '@changesets/config': 3.1.1 4013 + '@changesets/config': 3.1.2 4002 4014 '@changesets/errors': 0.2.0 4003 4015 '@changesets/get-dependents-graph': 2.1.3 4004 - '@changesets/get-release-plan': 4.0.13 4016 + '@changesets/get-release-plan': 4.0.14 4005 4017 '@changesets/git': 3.0.4 4006 4018 '@changesets/logger': 0.1.1 4007 4019 '@changesets/pre': 2.0.2 4008 - '@changesets/read': 0.6.5 4020 + '@changesets/read': 0.6.6 4009 4021 '@changesets/should-skip-package': 0.1.2 4010 4022 '@changesets/types': 6.1.0 4011 4023 '@changesets/write': 0.4.0 ··· 4026 4038 transitivePeerDependencies: 4027 4039 - '@types/node' 4028 4040 4029 - '@changesets/config@3.1.1': 4041 + '@changesets/config@3.1.2': 4030 4042 dependencies: 4031 4043 '@changesets/errors': 0.2.0 4032 4044 '@changesets/get-dependents-graph': 2.1.3 ··· 4047 4059 picocolors: 1.1.1 4048 4060 semver: 7.7.3 4049 4061 4050 - '@changesets/get-github-info@0.6.0': 4062 + '@changesets/get-github-info@0.7.0': 4051 4063 dependencies: 4052 4064 dataloader: 1.4.0 4053 4065 node-fetch: 2.7.0 4054 4066 transitivePeerDependencies: 4055 4067 - encoding 4056 4068 4057 - '@changesets/get-release-plan@4.0.13': 4069 + '@changesets/get-release-plan@4.0.14': 4058 4070 dependencies: 4059 4071 '@changesets/assemble-release-plan': 6.0.9 4060 - '@changesets/config': 3.1.1 4072 + '@changesets/config': 3.1.2 4061 4073 '@changesets/pre': 2.0.2 4062 - '@changesets/read': 0.6.5 4074 + '@changesets/read': 0.6.6 4063 4075 '@changesets/types': 6.1.0 4064 4076 '@manypkg/get-packages': 1.1.3 4065 4077 ··· 4077 4089 dependencies: 4078 4090 picocolors: 1.1.1 4079 4091 4080 - '@changesets/parse@0.4.1': 4092 + '@changesets/parse@0.4.2': 4081 4093 dependencies: 4082 4094 '@changesets/types': 6.1.0 4083 - js-yaml: 3.14.1 4095 + js-yaml: 4.1.1 4084 4096 4085 4097 '@changesets/pre@2.0.2': 4086 4098 dependencies: ··· 4089 4101 '@manypkg/get-packages': 1.1.3 4090 4102 fs-extra: 7.0.1 4091 4103 4092 - '@changesets/read@0.6.5': 4104 + '@changesets/read@0.6.6': 4093 4105 dependencies: 4094 4106 '@changesets/git': 3.0.4 4095 4107 '@changesets/logger': 0.1.1 4096 - '@changesets/parse': 0.4.1 4108 + '@changesets/parse': 0.4.2 4097 4109 '@changesets/types': 6.1.0 4098 4110 fs-extra: 7.0.1 4099 4111 p-filter: 2.1.0 ··· 5144 5156 dependencies: 5145 5157 tslib: 2.8.1 5146 5158 5147 - '@trivago/prettier-plugin-sort-imports@5.2.2(@vue/compiler-sfc@3.5.24)(prettier@3.5.3)': 5159 + '@trivago/prettier-plugin-sort-imports@6.0.2(@vue/compiler-sfc@3.5.24)(prettier@3.7.4)': 5148 5160 dependencies: 5149 5161 '@babel/generator': 7.28.5 5150 5162 '@babel/parser': 7.28.5 5151 5163 '@babel/traverse': 7.28.5 5152 5164 '@babel/types': 7.28.5 5153 5165 javascript-natural-sort: 0.7.1 5154 - lodash: 4.17.21 5155 - prettier: 3.5.3 5166 + lodash-es: 4.17.22 5167 + minimatch: 9.0.5 5168 + parse-imports-exports: 0.2.4 5169 + prettier: 3.7.4 5156 5170 optionalDependencies: 5157 5171 '@vue/compiler-sfc': 3.5.24 5158 5172 transitivePeerDependencies: ··· 6612 6626 dependencies: 6613 6627 p-locate: 6.0.0 6614 6628 6629 + lodash-es@4.17.22: {} 6630 + 6615 6631 lodash.includes@4.3.0: {} 6616 6632 6617 6633 lodash.isboolean@3.0.3: {} ··· 7200 7216 7201 7217 parse-gitignore@2.0.0: {} 7202 7218 7219 + parse-imports-exports@0.2.4: 7220 + dependencies: 7221 + parse-statements: 1.0.11 7222 + 7203 7223 parse-imports@2.2.1: 7204 7224 dependencies: 7205 7225 es-module-lexer: 1.7.0 ··· 7219 7239 unist-util-modify-children: 4.0.0 7220 7240 unist-util-visit-children: 3.0.0 7221 7241 vfile: 6.0.3 7242 + 7243 + parse-statements@1.0.11: {} 7222 7244 7223 7245 parse5@7.3.0: 7224 7246 dependencies: ··· 7316 7338 prettier-plugin-astro@0.14.1: 7317 7339 dependencies: 7318 7340 '@astrojs/compiler': 2.13.0 7319 - prettier: 3.5.3 7341 + prettier: 3.7.4 7320 7342 sass-formatter: 0.7.9 7321 7343 7322 7344 prettier@2.8.8: {} 7323 7345 7324 - prettier@3.5.3: {} 7346 + prettier@3.7.4: {} 7325 7347 7326 7348 prismjs@1.30.0: {} 7327 7349