Mirror of
0
fork

Configure Feed

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

Merge pull request #64 from trueberryless-org/update-template-files

[ci] sync template files

authored by

trueberryless and committed by
GitHub
943008c8 58c5f47c

+288 -26
+31
.github/renovate.json5
··· 1 + { 2 + $schema: "https://docs.renovatebot.com/renovate-schema.json", 3 + extends: [ 4 + ":disableDependencyDashboard", 5 + ":semanticPrefixFixDepsChoreOthers", 6 + ":ignoreModulesAndTests", 7 + "workarounds:all", 8 + "helpers:pinGitHubActionDigestsToSemver", 9 + "docker:disable", 10 + ], 11 + rangeStrategy: "bump", 12 + ignorePaths: ["**/node_modules/**"], 13 + packageRules: [ 14 + { 15 + groupName: "github-actions", 16 + matchManagers: ["github-actions"], 17 + }, 18 + { 19 + matchManagers: ["npm"], 20 + groupName: "dependencies", 21 + matchDepTypes: ["devDependencies", "dependencies", "peerDependencies"], 22 + enabled: false, 23 + }, 24 + { 25 + description: "Disable package manager version updates", 26 + matchPackageNames: ["pnpm"], 27 + matchDepTypes: ["packageManager"], 28 + enabled: false, 29 + }, 30 + ], 31 + }
+5 -5
.github/workflows/format.yaml
··· 10 10 autofix: 11 11 runs-on: ubuntu-latest 12 12 steps: 13 - - uses: actions/checkout@v4 13 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 14 14 15 15 - name: Setup PNPM 16 - uses: pnpm/action-setup@v3 16 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 17 17 18 18 - name: Setup Node 19 - uses: actions/setup-node@v4 19 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 20 20 with: 21 21 node-version: 20 22 22 cache: "pnpm" ··· 32 32 - name: Run pngquant 33 33 run: | 34 34 shopt -s globstar 35 - find . -name '*.png' -exec pngquant --ext .png --force 256 {} \; 35 + find . -name '*.png' -exec pngquant --ext .png 256 {} \; 36 36 37 - - uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c 37 + - uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef
+3 -3
.github/workflows/labeler.yaml
··· 11 11 steps: 12 12 - name: Generate GitHub App token 13 13 id: generate_token 14 - uses: tibdex/github-app-token@v2.1.0 14 + uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 15 15 with: 16 16 app_id: ${{ secrets.BOT_APP_ID }} 17 17 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 18 18 19 - - uses: actions/checkout@v4 19 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 20 20 - name: Ensure labels exist 21 21 env: 22 22 GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} ··· 49 49 gh label create "🏯 styles" --description "Stylesheets or design updates" --color "550F5A" --force 50 50 gh label create "🔒 wontfix" --description "This will not be worked on" --color "FFFFFF" --force 51 51 52 - - uses: actions/labeler@v5 52 + - uses: actions/labeler@8558fd74291d67161a8a78ce36a881fa63b766a9 # v5 53 53 with: 54 54 configuration-path: .github/labeler.yaml 55 55 sync-labels: true
+23 -14
.github/workflows/publish.yaml
··· 24 24 starlight-cooler-credit: ${{ steps.filter.outputs.starlight-cooler-credit }} 25 25 steps: 26 26 - name: Check out the repo 27 - uses: actions/checkout@v4 27 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 28 28 29 - - uses: dorny/paths-filter@v3 29 + - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 30 30 id: filter 31 31 with: 32 32 filters: | ··· 44 44 steps: 45 45 - name: Generate GitHub App token 46 46 id: generate_token 47 - uses: tibdex/github-app-token@v2.1.0 47 + uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 48 48 with: 49 49 app_id: ${{ secrets.BOT_APP_ID }} 50 50 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 51 51 52 52 - name: Checkout Repo 53 - uses: actions/checkout@v4 53 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 54 54 55 55 - name: Setup PNPM 56 - uses: pnpm/action-setup@v3 56 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 57 57 58 58 - name: Setup Node 59 - uses: actions/setup-node@v4 59 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 60 60 with: 61 61 node-version: ${{ env.NODE_VERSION }} 62 62 cache: "pnpm" ··· 66 66 67 67 - name: Create Release Pull Request 68 68 id: changesets 69 - uses: changesets/action@v1 69 + uses: changesets/action@06245a4e0a36c064a573d4150030f5ec548e4fcc # v1.4.10 70 70 with: 71 71 commit: "[ci] release" 72 72 title: "[ci] release" ··· 74 74 GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} 75 75 NPM_TOKEN: ${{ secrets.NPM_TOKEN }} 76 76 77 + - name: Get published version 78 + if: steps.changesets.outputs.hasChangesets == 'true' 79 + run: | 80 + git checkout changeset-release/main 81 + VERSION=$(node -p "require('./packages/starlight-cooler-credit/package.json').version") 82 + NAME=$(node -p "require('./packages/starlight-cooler-credit/package.json').name") 83 + git commit --amend -m "[ci] release $NAME v$VERSION" --no-edit 84 + git push origin changeset-release/main:changeset-release/main --force 85 + 77 86 image-tag: 78 87 name: Image Tag 79 88 runs-on: ubuntu-latest ··· 81 90 IMAGE_TAG: ${{ env.IMAGE_TAG }} 82 91 steps: 83 92 - name: Check out the repo 84 - uses: actions/checkout@v4 93 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 85 94 86 95 - name: Read version from package.json 87 96 id: get_version ··· 105 114 contents: write 106 115 id-token: write 107 116 steps: 108 - - uses: actions/checkout@v4 117 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 109 118 110 119 - name: Setup PNPM 111 - uses: pnpm/action-setup@v3 120 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 112 121 113 122 - name: Setup Node 114 - uses: actions/setup-node@v4 123 + uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0 115 124 with: 116 125 node-version: ${{ env.NODE_VERSION }} 117 126 cache: "pnpm" ··· 134 143 contents: write 135 144 steps: 136 145 - name: Check out the repo 137 - uses: actions/checkout@v4 146 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 138 147 139 148 - id: extract-changelog 140 - uses: sean0x42/markdown-extract@v2.1.0 149 + uses: sean0x42/markdown-extract@7b185cbe85263116bbf741e739e7198ba86465dc # v2.1.0 141 150 with: 142 151 file: packages/starlight-cooler-credit/CHANGELOG.md 143 152 pattern: ${{ needs.image-tag.outputs.IMAGE_TAG }} ··· 163 172 if: env.RELEASE_SKIPPED == 'false' 164 173 env: 165 174 DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_URL }} 166 - uses: Ilshidur/action-discord@0.3.2 175 + uses: Ilshidur/action-discord@0c4b27844ba47cb1c7bee539c8eead5284ce9fa9 # 0.3.2 167 176 with: 168 177 args: | 169 178 # ${{ env.IMAGE_NAME }}@${{ needs.image-tag.outputs.IMAGE_TAG }}
+2 -2
.github/workflows/welcome-bot.yaml
··· 15 15 steps: 16 16 - name: Generate GitHub App token 17 17 id: generate_token 18 - uses: tibdex/github-app-token@v2.1.0 18 + uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 19 19 with: 20 20 app_id: ${{ secrets.BOT_APP_ID }} 21 21 private_key: ${{ secrets.BOT_PRIVATE_KEY }} 22 22 23 - - uses: actions/checkout@v4 23 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 24 24 - name: Convert Repository Name to Title Case 25 25 id: convert_repo_name 26 26 run: |
+1
.gitignore
··· 93 93 # Nuxt.js build / generate output 94 94 .nuxt 95 95 dist 96 + .output 96 97 97 98 # Gatsby files 98 99 .cache/
+22 -1
.prettierrc
··· 1 1 { 2 + "plugins": ["prettier-plugin-astro", "@trivago/prettier-plugin-sort-imports"], 2 3 "trailingComma": "es5", 3 4 "tabWidth": 2, 4 5 "semi": true, 5 6 "singleQuote": false, 6 7 "endOfLine": "lf", 7 - "htmlWhitespaceSensitivity": "css" 8 + "htmlWhitespaceSensitivity": "css", 9 + "overrides": [ 10 + { 11 + "files": "*.astro", 12 + "options": { 13 + "parser": "astro" 14 + } 15 + } 16 + ], 17 + "importOrder": [ 18 + "<THIRD_PARTY_MODULES>", 19 + "^@internal/(.*)$", 20 + "^@/models/(.*)$", 21 + "^@/utils/(.*)$", 22 + "^@/components/(?!ui/)(.*)$", 23 + "^@/components/ui/(.*)$", 24 + "^[./].*(?<!\\.(c|le|sc)ss)$", 25 + "^[.]/[-a-zA-Z0-9_]+[.](module)[.](css|scss|less)$" 26 + ], 27 + "importOrderSeparation": true, 28 + "importOrderSortSpecifiers": true 8 29 }
+4 -1
package.json
··· 19 19 }, 20 20 "devDependencies": { 21 21 "@changesets/changelog-github": "^0.5.0", 22 - "@changesets/cli": "^2.27.11" 22 + "@changesets/cli": "^2.27.11", 23 + "@trivago/prettier-plugin-sort-imports": "5.2.2", 24 + "prettier": "3.5.3", 25 + "prettier-plugin-astro": "0.14.1" 23 26 }, 24 27 "packageManager": "pnpm@9.6.0", 25 28 "engines": {
+197
pnpm-lock.yaml
··· 14 14 '@changesets/cli': 15 15 specifier: ^2.27.11 16 16 version: 2.28.0 17 + '@trivago/prettier-plugin-sort-imports': 18 + specifier: 5.2.2 19 + version: 5.2.2(prettier@3.5.3) 20 + prettier: 21 + specifier: 3.5.3 22 + version: 3.5.3 23 + prettier-plugin-astro: 24 + specifier: 0.14.1 25 + version: 0.14.1 17 26 18 27 docs: 19 28 dependencies: ··· 105 114 resolution: {integrity: sha512-wxhSKRfKugLwLlr4OFfcqovk+LIFtKwLyGPqMsv+9/ibqqnW3Gv7tBhtKEb0gAyUAC4G9BTVQeQahqnQAhd6IQ==} 106 115 engines: {node: ^18.17.1 || ^20.3.0 || >=22.0.0} 107 116 117 + '@babel/code-frame@7.26.2': 118 + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 119 + engines: {node: '>=6.9.0'} 120 + 121 + '@babel/generator@7.26.10': 122 + resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==} 123 + engines: {node: '>=6.9.0'} 124 + 108 125 '@babel/helper-string-parser@7.25.9': 109 126 resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 110 127 engines: {node: '>=6.9.0'} ··· 112 129 '@babel/helper-validator-identifier@7.25.9': 113 130 resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 114 131 engines: {node: '>=6.9.0'} 132 + 133 + '@babel/parser@7.26.10': 134 + resolution: {integrity: sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==} 135 + engines: {node: '>=6.0.0'} 136 + hasBin: true 115 137 116 138 '@babel/parser@7.26.2': 117 139 resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} ··· 122 144 resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} 123 145 engines: {node: '>=6.9.0'} 124 146 147 + '@babel/template@7.26.9': 148 + resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==} 149 + engines: {node: '>=6.9.0'} 150 + 151 + '@babel/traverse@7.26.10': 152 + resolution: {integrity: sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==} 153 + engines: {node: '>=6.9.0'} 154 + 125 155 '@babel/types@7.26.0': 126 156 resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} 157 + engines: {node: '>=6.9.0'} 158 + 159 + '@babel/types@7.26.10': 160 + resolution: {integrity: sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==} 127 161 engines: {node: '>=6.9.0'} 128 162 129 163 '@changesets/apply-release-plan@7.0.9': ··· 467 501 cpu: [x64] 468 502 os: [win32] 469 503 504 + '@jridgewell/gen-mapping@0.3.8': 505 + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 506 + engines: {node: '>=6.0.0'} 507 + 508 + '@jridgewell/resolve-uri@3.1.2': 509 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 510 + engines: {node: '>=6.0.0'} 511 + 512 + '@jridgewell/set-array@1.2.1': 513 + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 514 + engines: {node: '>=6.0.0'} 515 + 470 516 '@jridgewell/sourcemap-codec@1.5.0': 471 517 resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 518 + 519 + '@jridgewell/trace-mapping@0.3.25': 520 + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 472 521 473 522 '@manypkg/find-root@1.1.0': 474 523 resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} ··· 647 696 '@shikijs/vscode-textmate@10.0.2': 648 697 resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 649 698 699 + '@trivago/prettier-plugin-sort-imports@5.2.2': 700 + resolution: {integrity: sha512-fYDQA9e6yTNmA13TLVSA+WMQRc5Bn/c0EUBditUHNfMMxN7M82c38b1kEggVE3pLpZ0FwkwJkUEKMiOi52JXFA==} 701 + engines: {node: '>18.12'} 702 + peerDependencies: 703 + '@vue/compiler-sfc': 3.x 704 + prettier: 2.x - 3.x 705 + prettier-plugin-svelte: 3.x 706 + svelte: 4.x || 5.x 707 + peerDependenciesMeta: 708 + '@vue/compiler-sfc': 709 + optional: true 710 + prettier-plugin-svelte: 711 + optional: true 712 + svelte: 713 + optional: true 714 + 650 715 '@trueberryless-org/starlight-plugins-docs-components@0.4.0': 651 716 resolution: {integrity: sha512-5oXk1jPNkWIumEQMmrFxhkkEaxRoE9YLOeEVKp0Y44aZB58UyJvw+K50eole32GrqSGgnc9DqtBRlUrg5Hdw2g==} 652 717 engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} ··· 1156 1221 resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1157 1222 deprecated: Glob versions prior to v9 are no longer supported 1158 1223 1224 + globals@11.12.0: 1225 + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1226 + engines: {node: '>=4'} 1227 + 1159 1228 globby@11.1.0: 1160 1229 resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1161 1230 engines: {node: '>=10'} ··· 1346 1415 isexe@2.0.0: 1347 1416 resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1348 1417 1418 + javascript-natural-sort@0.7.1: 1419 + resolution: {integrity: sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==} 1420 + 1349 1421 jiti@2.4.2: 1350 1422 resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} 1351 1423 hasBin: true 1424 + 1425 + js-tokens@4.0.0: 1426 + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1352 1427 1353 1428 js-yaml@3.14.1: 1354 1429 resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} ··· 1358 1433 resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1359 1434 hasBin: true 1360 1435 1436 + jsesc@3.1.0: 1437 + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1438 + engines: {node: '>=6'} 1439 + hasBin: true 1440 + 1361 1441 json-buffer@3.0.1: 1362 1442 resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1363 1443 ··· 1395 1475 1396 1476 lodash.startcase@4.4.0: 1397 1477 resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} 1478 + 1479 + lodash@4.17.21: 1480 + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1398 1481 1399 1482 longest-streak@3.1.0: 1400 1483 resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} ··· 1773 1856 resolution: {integrity: sha512-rU+ZAv1Ur9jAUZtGPebQVQPzdGhNzaEiQ7VL9+cjsAWPHFYOccNXPNiev1CCDSOg/2j7UujM7ojNhpkuILEVNQ==} 1774 1857 engines: {node: '>=18.12'} 1775 1858 1859 + prettier-plugin-astro@0.14.1: 1860 + resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==} 1861 + engines: {node: ^14.15.0 || >=16.0.0} 1862 + 1776 1863 prettier@2.8.8: 1777 1864 resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 1778 1865 engines: {node: '>=10.13.0'} 1779 1866 hasBin: true 1780 1867 1868 + prettier@3.5.3: 1869 + resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 1870 + engines: {node: '>=14'} 1871 + hasBin: true 1872 + 1781 1873 prismjs@1.29.0: 1782 1874 resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} 1783 1875 engines: {node: '>=6'} ··· 1902 1994 1903 1995 run-parallel@1.2.0: 1904 1996 resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1997 + 1998 + s.color@0.0.15: 1999 + resolution: {integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==} 1905 2000 1906 2001 safer-buffer@2.1.2: 1907 2002 resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1908 2003 2004 + sass-formatter@0.7.9: 2005 + resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==} 2006 + 1909 2007 sax@1.4.1: 1910 2008 resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 1911 2009 ··· 2036 2134 style-to-object@1.0.8: 2037 2135 resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} 2038 2136 2137 + suf-log@2.5.3: 2138 + resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} 2139 + 2039 2140 term-size@2.2.1: 2040 2141 resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} 2041 2142 engines: {node: '>=8'} ··· 2449 2550 transitivePeerDependencies: 2450 2551 - supports-color 2451 2552 2553 + '@babel/code-frame@7.26.2': 2554 + dependencies: 2555 + '@babel/helper-validator-identifier': 7.25.9 2556 + js-tokens: 4.0.0 2557 + picocolors: 1.1.1 2558 + 2559 + '@babel/generator@7.26.10': 2560 + dependencies: 2561 + '@babel/parser': 7.26.10 2562 + '@babel/types': 7.26.10 2563 + '@jridgewell/gen-mapping': 0.3.8 2564 + '@jridgewell/trace-mapping': 0.3.25 2565 + jsesc: 3.1.0 2566 + 2452 2567 '@babel/helper-string-parser@7.25.9': {} 2453 2568 2454 2569 '@babel/helper-validator-identifier@7.25.9': {} 2455 2570 2571 + '@babel/parser@7.26.10': 2572 + dependencies: 2573 + '@babel/types': 7.26.10 2574 + 2456 2575 '@babel/parser@7.26.2': 2457 2576 dependencies: 2458 2577 '@babel/types': 7.26.0 ··· 2461 2580 dependencies: 2462 2581 regenerator-runtime: 0.14.1 2463 2582 2583 + '@babel/template@7.26.9': 2584 + dependencies: 2585 + '@babel/code-frame': 7.26.2 2586 + '@babel/parser': 7.26.10 2587 + '@babel/types': 7.26.10 2588 + 2589 + '@babel/traverse@7.26.10': 2590 + dependencies: 2591 + '@babel/code-frame': 7.26.2 2592 + '@babel/generator': 7.26.10 2593 + '@babel/parser': 7.26.10 2594 + '@babel/template': 7.26.9 2595 + '@babel/types': 7.26.10 2596 + debug: 4.4.0 2597 + globals: 11.12.0 2598 + transitivePeerDependencies: 2599 + - supports-color 2600 + 2464 2601 '@babel/types@7.26.0': 2602 + dependencies: 2603 + '@babel/helper-string-parser': 7.25.9 2604 + '@babel/helper-validator-identifier': 7.25.9 2605 + 2606 + '@babel/types@7.26.10': 2465 2607 dependencies: 2466 2608 '@babel/helper-string-parser': 7.25.9 2467 2609 '@babel/helper-validator-identifier': 7.25.9 ··· 2813 2955 '@img/sharp-win32-x64@0.33.5': 2814 2956 optional: true 2815 2957 2958 + '@jridgewell/gen-mapping@0.3.8': 2959 + dependencies: 2960 + '@jridgewell/set-array': 1.2.1 2961 + '@jridgewell/sourcemap-codec': 1.5.0 2962 + '@jridgewell/trace-mapping': 0.3.25 2963 + 2964 + '@jridgewell/resolve-uri@3.1.2': {} 2965 + 2966 + '@jridgewell/set-array@1.2.1': {} 2967 + 2816 2968 '@jridgewell/sourcemap-codec@1.5.0': {} 2969 + 2970 + '@jridgewell/trace-mapping@0.3.25': 2971 + dependencies: 2972 + '@jridgewell/resolve-uri': 3.1.2 2973 + '@jridgewell/sourcemap-codec': 1.5.0 2817 2974 2818 2975 '@manypkg/find-root@1.1.0': 2819 2976 dependencies: ··· 2991 3148 '@types/hast': 3.0.4 2992 3149 2993 3150 '@shikijs/vscode-textmate@10.0.2': {} 3151 + 3152 + '@trivago/prettier-plugin-sort-imports@5.2.2(prettier@3.5.3)': 3153 + dependencies: 3154 + '@babel/generator': 7.26.10 3155 + '@babel/parser': 7.26.10 3156 + '@babel/traverse': 7.26.10 3157 + '@babel/types': 7.26.10 3158 + javascript-natural-sort: 0.7.1 3159 + lodash: 4.17.21 3160 + prettier: 3.5.3 3161 + transitivePeerDependencies: 3162 + - supports-color 2994 3163 2995 3164 '@trueberryless-org/starlight-plugins-docs-components@0.4.0(@astrojs/starlight@0.32.0(astro@5.3.0(jiti@2.4.2)(rollup@4.34.7)(typescript@5.6.3)))(astro@5.3.0(jiti@2.4.2)(rollup@4.34.7)(typescript@5.6.3))': 2996 3165 dependencies: ··· 3589 3758 once: 1.4.0 3590 3759 path-is-absolute: 1.0.1 3591 3760 3761 + globals@11.12.0: {} 3762 + 3592 3763 globby@11.1.0: 3593 3764 dependencies: 3594 3765 array-union: 2.1.0 ··· 3900 4071 is-inside-container: 1.0.0 3901 4072 3902 4073 isexe@2.0.0: {} 4074 + 4075 + javascript-natural-sort@0.7.1: {} 3903 4076 3904 4077 jiti@2.4.2: 3905 4078 optional: true 3906 4079 4080 + js-tokens@4.0.0: {} 4081 + 3907 4082 js-yaml@3.14.1: 3908 4083 dependencies: 3909 4084 argparse: 1.0.10 ··· 3912 4087 js-yaml@4.1.0: 3913 4088 dependencies: 3914 4089 argparse: 2.0.1 4090 + 4091 + jsesc@3.1.0: {} 3915 4092 3916 4093 json-buffer@3.0.1: {} 3917 4094 ··· 3951 4128 p-locate: 4.1.0 3952 4129 3953 4130 lodash.startcase@4.4.0: {} 4131 + 4132 + lodash@4.17.21: {} 3954 4133 3955 4134 longest-streak@3.1.0: {} 3956 4135 ··· 4615 4794 find-yarn-workspace-root2: 1.2.16 4616 4795 which-pm: 3.0.1 4617 4796 4797 + prettier-plugin-astro@0.14.1: 4798 + dependencies: 4799 + '@astrojs/compiler': 2.10.3 4800 + prettier: 3.5.3 4801 + sass-formatter: 0.7.9 4802 + 4618 4803 prettier@2.8.8: {} 4804 + 4805 + prettier@3.5.3: {} 4619 4806 4620 4807 prismjs@1.29.0: {} 4621 4808 ··· 4845 5032 dependencies: 4846 5033 queue-microtask: 1.2.3 4847 5034 5035 + s.color@0.0.15: {} 5036 + 4848 5037 safer-buffer@2.1.2: {} 5038 + 5039 + sass-formatter@0.7.9: 5040 + dependencies: 5041 + suf-log: 2.5.3 4849 5042 4850 5043 sax@1.4.1: {} 4851 5044 ··· 5008 5201 style-to-object@1.0.8: 5009 5202 dependencies: 5010 5203 inline-style-parser: 0.2.4 5204 + 5205 + suf-log@2.5.3: 5206 + dependencies: 5207 + s.color: 0.0.15 5011 5208 5012 5209 term-size@2.2.1: {} 5013 5210