mirror of
https://codeberg.org/Codeberg/Documentation.git
synced 2026-08-15 14:53:29 -07:00
Merge branch 'main' into pages-dns-provider-warn
This commit is contained in:
commit
2b21a36bda
7 changed files with 213 additions and 236 deletions
|
|
@ -22,7 +22,7 @@ steps:
|
|||
depends_on: []
|
||||
settings:
|
||||
# renovate: datasource=npm depName=prettier
|
||||
version: 3.8.1
|
||||
version: 3.9.4
|
||||
|
||||
links:
|
||||
image: lycheeverse/lychee:0.22.0
|
||||
|
|
@ -31,7 +31,7 @@ steps:
|
|||
- lychee -v -t 40 --root-dir $(pwd)/content --fallback-extensions md .
|
||||
|
||||
lint-yaml:
|
||||
image: pipelinecomponents/yamllint:0.35.9
|
||||
image: pipelinecomponents/yamllint:0.35.13
|
||||
depends_on: []
|
||||
commands:
|
||||
- yamllint --strict .
|
||||
|
|
|
|||
|
|
@ -32,8 +32,13 @@ The second record has a value of `letsencrypt.org;accounturi=https://acme-stagin
|
|||
|
||||
{% endadmonition %}
|
||||
|
||||
_We assume for the following description, that you want to serve your website with and without www in front.
|
||||
If you are on a subdomain already (like myproject.yourdomain.com), you can skip the `www.yourdomain.com` CNAME entry._
|
||||
{% admonition "info" "Notice" %}
|
||||
|
||||
Throughout this document, the domain `example.org` is used as a placeholder for your own domain. Please ensure you replace any literal instances of `example.org` with the domain that you've purchased to ensure the proper setup procedure.
|
||||
|
||||
We provide context-appropriate examples for both the apex domain, and the `www` subdomain commonly used for websites. If you wish to use a different subdomain, replace the `www` in the following examples with the hostname of your desired subdomain. If you wish to use the apex domain (that is, the bare domain without any `www.` in front), we recommend additionally setting up a redirect on the `www` subdomain (or vice versa) to ensure compatibility with all browsers and devices.
|
||||
|
||||
{% endadmonition %}
|
||||
|
||||
{% admonition "warning" "DNS provider interface pitfalls" %}
|
||||
|
||||
|
|
@ -58,7 +63,7 @@ In the end, it should look like this:
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>www.yourdomain.com</td>
|
||||
<td>www.example.org</td>
|
||||
<td>CNAME</td>
|
||||
<td>codeberg.page.</td>
|
||||
</tr>
|
||||
|
|
@ -96,12 +101,12 @@ In this case, some DNS providers support an ALIAS record, which will work instea
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>yourdomain.com</td>
|
||||
<td>example.org</td>
|
||||
<td>ALIAS</td>
|
||||
<td>codeberg.page</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>www.yourdomain.com</td>
|
||||
<td>www.example.org</td>
|
||||
<td>ALIAS</td>
|
||||
<td>codeberg.page</td>
|
||||
</tr>
|
||||
|
|
@ -130,12 +135,12 @@ so keep an eye on Codeberg updates to check.
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>yourdomain.com</td>
|
||||
<td>example.org</td>
|
||||
<td>A</td>
|
||||
<td>217.197.84.141</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>yourdomain.com</td>
|
||||
<td>example.org</td>
|
||||
<td>AAAA</td>
|
||||
<td>2a0a:4580:103f:c0de::2</td>
|
||||
</tr>
|
||||
|
|
@ -175,12 +180,12 @@ set a TXT record on the `_git-pages-repository` subdomain of your domain with th
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>_git-pages-repository.yourdomain.com</td>
|
||||
<td>_git-pages-repository.example.org</td>
|
||||
<td>TXT</td>
|
||||
<td>https://codeberg.org/username/repository.git</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>_git-pages-repository.www.yourdomain.com</td>
|
||||
<td>_git-pages-repository.www.example.org</td>
|
||||
<td>TXT</td>
|
||||
<td>https://codeberg.org/username/repository.git</td>
|
||||
</tr>
|
||||
|
|
@ -198,12 +203,12 @@ set a TXT record on the `_git-pages-forge-allowlist` subdomain of your domain wi
|
|||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>_git-pages-forge-allowlist.yourdomain.com</td>
|
||||
<td>_git-pages-forge-allowlist.example.org</td>
|
||||
<td>TXT</td>
|
||||
<td>https://codeberg.org/username/repository.git</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>_git-pages-forge-allowlist.www.yourdomain.com</td>
|
||||
<td>_git-pages-forge-allowlist.www.example.org</td>
|
||||
<td>TXT</td>
|
||||
<td>https://codeberg.org/username/repository.git</td>
|
||||
</tr>
|
||||
|
|
@ -227,11 +232,11 @@ you should choose one of them to be the ‘canonical’ URL,
|
|||
add a [`_redirects` file](/codeberg-pages/advanced-usage/) to your site redirecting from one version to the other,
|
||||
and deploy your website to both domains. (I.e. set up two separate webhooks, or use two separate deploy actions.)
|
||||
|
||||
For example, to redirect people from www.yourdomain.com to yourdomain.com,
|
||||
For example, to redirect people from www.example.org to example.org,
|
||||
use this `_redirects` file:
|
||||
|
||||
```
|
||||
//www.yourdomain.com/* https://yourdomain.com/:splat 302!
|
||||
//www.example.org/* https://example.org/:splat 302!
|
||||
```
|
||||
|
||||
For the redirect to work,
|
||||
|
|
|
|||
|
|
@ -121,6 +121,7 @@ To add footnotes use the syntax `[^name]` inline, and define them with:<br>
|
|||
|
||||
```markdown
|
||||
Text with a footnote.[^1]
|
||||
|
||||
[^1]: A footnote.
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -78,17 +78,21 @@ This is rendered as:
|
|||
The link parser used in Forgejo can also work with the _double square brackets_ syntax in issues and
|
||||
other places where markdown is rendered:
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
```markdown
|
||||
[[https://codeberg.org/]]
|
||||
```
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
will get rendered as <https://codeberg.org>.
|
||||
|
||||
You can also give a link description, as with the regular markdown syntax:
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
```markdown
|
||||
[[This is a link to Codeberg|https://codeberg.org]]
|
||||
```
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
will be rendered as [This is a link to Codeberg](https://codeberg.org).
|
||||
|
||||
|
|
|
|||
|
|
@ -133,6 +133,14 @@ Do this simple test:
|
|||
ssh -T git@codeberg.org
|
||||
```
|
||||
|
||||
<br>
|
||||
{% admonition "tip" %}
|
||||
|
||||
If this is your first time connecting to Codeberg, you may be warned by your SSH client that the authenticity of the host cannot be established.
|
||||
In this case, you will need to [verify the host fingerprint](/security/ssh-fingerprint/).
|
||||
|
||||
{% endadmonition %}
|
||||
|
||||
The output should look like this:
|
||||
|
||||
```text
|
||||
|
|
|
|||
10
package.json
10
package.json
|
|
@ -12,20 +12,20 @@
|
|||
"lint-spellcheck": "cspell lint --no-progress --gitignore '{**,.*}/{*,.*}'"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@11ty/eleventy": "3.1.5",
|
||||
"@11ty/eleventy": "3.1.6",
|
||||
"@11ty/eleventy-img": "6.0.4",
|
||||
"@11ty/eleventy-navigation": "1.0.5",
|
||||
"@11ty/eleventy-plugin-syntaxhighlight": "5.0.2",
|
||||
"@fortawesome/fontawesome-svg-core": "7.1.0",
|
||||
"@fortawesome/free-solid-svg-icons": "7.1.0",
|
||||
"@fortawesome/fontawesome-svg-core": "7.3.0",
|
||||
"@fortawesome/free-solid-svg-icons": "7.3.0",
|
||||
"@toycode/markdown-it-class": "1.2.4",
|
||||
"@uncenter/eleventy-plugin-toc": "2.1.2",
|
||||
"cspell": "9.8.0",
|
||||
"cspell": "10.0.1",
|
||||
"halfmoon": "2.0.2",
|
||||
"markdown-it": "14.2.0",
|
||||
"markdown-it-anchor": "9.2.0",
|
||||
"markdownlint-cli2": "0.20.0",
|
||||
"pagefind": "1.5.2",
|
||||
"prettier": "3.8.1"
|
||||
"prettier": "3.9.4"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
391
pnpm-lock.yaml
391
pnpm-lock.yaml
|
|
@ -9,8 +9,8 @@ importers:
|
|||
.:
|
||||
devDependencies:
|
||||
'@11ty/eleventy':
|
||||
specifier: 3.1.5
|
||||
version: 3.1.5
|
||||
specifier: 3.1.6
|
||||
version: 3.1.6
|
||||
'@11ty/eleventy-img':
|
||||
specifier: 6.0.4
|
||||
version: 6.0.4
|
||||
|
|
@ -21,11 +21,11 @@ importers:
|
|||
specifier: 5.0.2
|
||||
version: 5.0.2
|
||||
'@fortawesome/fontawesome-svg-core':
|
||||
specifier: 7.1.0
|
||||
version: 7.1.0
|
||||
specifier: 7.3.0
|
||||
version: 7.3.0
|
||||
'@fortawesome/free-solid-svg-icons':
|
||||
specifier: 7.1.0
|
||||
version: 7.1.0
|
||||
specifier: 7.3.0
|
||||
version: 7.3.0
|
||||
'@toycode/markdown-it-class':
|
||||
specifier: 1.2.4
|
||||
version: 1.2.4
|
||||
|
|
@ -33,8 +33,8 @@ importers:
|
|||
specifier: 2.1.2
|
||||
version: 2.1.2
|
||||
cspell:
|
||||
specifier: 9.8.0
|
||||
version: 9.8.0
|
||||
specifier: 10.0.1
|
||||
version: 10.0.1
|
||||
halfmoon:
|
||||
specifier: 2.0.2
|
||||
version: 2.0.2
|
||||
|
|
@ -51,8 +51,8 @@ importers:
|
|||
specifier: 1.5.2
|
||||
version: 1.5.2
|
||||
prettier:
|
||||
specifier: 3.8.1
|
||||
version: 3.8.1
|
||||
specifier: 3.9.4
|
||||
version: 3.9.4
|
||||
|
||||
packages:
|
||||
|
||||
|
|
@ -89,8 +89,8 @@ packages:
|
|||
resolution: {integrity: sha512-6QE+duqSQ0GY9rENXYb4iPR4AYGdrFpqnmi59tFp9VrleOl0QSh8VlBr2yd6dlhkdtj7904poZW5PvGr9cMiJQ==}
|
||||
engines: {node: '>=18'}
|
||||
|
||||
'@11ty/eleventy@3.1.5':
|
||||
resolution: {integrity: sha512-hZ0g6MwZyRxCqXsPm82gIM304LraKbUz3ZmezOSjsqxttZG6cHTib3Qq8QkESJoKwnr+yX1eyfOkPC5/mEgZnQ==}
|
||||
'@11ty/eleventy@3.1.6':
|
||||
resolution: {integrity: sha512-ZlSiR1PLdS2lv7TelBgWAhcvMiLNZkPBlLEb+lh7kGYZ+Mk0bo9qcYgVsewvw9W7Em0RH3wd01h5fAstNDh0zA==}
|
||||
engines: {node: '>=18'}
|
||||
hasBin: true
|
||||
|
||||
|
|
@ -106,37 +106,37 @@ packages:
|
|||
resolution: {integrity: sha512-oI7m8pa7/IAU/3lqRU9vjBbs20iKFo7x+1K9kT3aVira6scc1X9MjBdgLCHzLJeJ7iB6wydioA+kr9/qPnvmlQ==}
|
||||
engines: {node: '>=18'}
|
||||
|
||||
'@cspell/cspell-bundled-dicts@9.8.0':
|
||||
resolution: {integrity: sha512-MpXFpVyBPfJQ1YuVotljqUaGf6lWuf+fuWBBgs0PHFYTSjRPWuIxviAaCDnup/CJLLH60xQL4IlcQe4TOjzljw==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/cspell-bundled-dicts@10.0.1':
|
||||
resolution: {integrity: sha512-WvkSDNX4Uyyj/ZgbPO6L38iFNMfK1EqsH1FteRiI2qLz6QZMXRFrIt12OqiWIplzZDDaVpBH9FCJOPJll0fjCQ==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/cspell-json-reporter@9.8.0':
|
||||
resolution: {integrity: sha512-nqUaSo9T7l8KrE22gc7ZIs+zvP7ak1i7JqGdRs8sGvh2Ijqj43qYQLePgb1b/vm8a1bavnc51m+vf05hpd3g3Q==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/cspell-json-reporter@10.0.1':
|
||||
resolution: {integrity: sha512-/nes1RGILec3WCBcoMOd0byNTBtnJuPaVz/+ZzqYkLtY7x58VMcBG5kyP6hPyN8cIwjRADE/SR43gwdXuqk/FA==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/cspell-performance-monitor@9.8.0':
|
||||
resolution: {integrity: sha512-IsrXYzn23yJICIQ915ACdf+2lNEcFNTu5BIQt3khHOsGVvZ9/AZYpu9Dk825vUyZG7RHg2Oi6dYNiJtULG4ouQ==}
|
||||
engines: {node: '>=20.18'}
|
||||
'@cspell/cspell-performance-monitor@10.0.1':
|
||||
resolution: {integrity: sha512-9tVcHXwRnbazUv4WSG0h3MqV4+LgmLNgSALAQUflPPW0EMxTf7C4Dmv9cgxJyCEQrdnVKCr58nPPaahhz9LJUg==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/cspell-pipe@9.8.0':
|
||||
resolution: {integrity: sha512-ISEUD8PHYkd2Ktafc6hFfIXdGKYUvthA09NbwwZsWmOqYyk4wWKHZKqyyxD+BcrFwOyMOJcD8OEvIjkRQp2SJw==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/cspell-pipe@10.0.1':
|
||||
resolution: {integrity: sha512-HPeXMD9AZ3V/qPkvQaPcak+C7cJ2z7JTHN8smd6J8L2aThLRky2cHc2OyeaHPSHB7WA47b4z2n5u5nawZhv5VQ==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/cspell-resolver@9.8.0':
|
||||
resolution: {integrity: sha512-PZJj56BZpKfMxOzWkyt7b+aIXObe+8Ku/zLI4xDXPSuQPENbHBFHfPIZx68CyGEkanKxZ1ewKVx/FT1FUy+wDA==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/cspell-resolver@10.0.1':
|
||||
resolution: {integrity: sha512-PIzkZHD1fGUQx1XteK2d1iQ0Mzq/maYcoB4jkvAiiR6WqP3MWYNKFdI9z+R5pOq5KgMfW+5Ig1q0oSR6h8irlA==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/cspell-service-bus@9.8.0':
|
||||
resolution: {integrity: sha512-P45sd2nqwcqhulBBbQnZB/JNcobecTrP4Ky3vmEq0cprsvavc+ZoHF9U2Ql5ghMSUzjrF2n1aNzZ8cH4IlsnKg==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/cspell-service-bus@10.0.1':
|
||||
resolution: {integrity: sha512-y6NcIGP2IdXaBL4PVH8vxsr7K27wzz3Ech87UtUtrDSXAiVEOvXgAIknEOUVp59rTlUE8Rn4IRURC6f/hgMyfw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/cspell-types@9.8.0':
|
||||
resolution: {integrity: sha512-7Ge4UD6SCA49Tcc3+GTlz3Xn4cqVUAXtDO0u9IeHvJgkN3Me2Rw2GB/CtGmhKST3YeEeZMX7ww09TdHMUJlehw==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/cspell-types@10.0.1':
|
||||
resolution: {integrity: sha512-kLgLShnWADDVreKC63pBrWkcvxgZzFIfO34Jhx/SWfuOIA3cD8AXT+HjyuLfoGJ7mUb58hv2kUziKzEy4INb1w==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/cspell-worker@9.8.0':
|
||||
resolution: {integrity: sha512-W8FLdE3MXPLbWtAXciILQhk9CHd6Mt+HRjZHM8m+dwE1Bc2TAjUai8kIxsdhHUq58p7gYY2ekr5sg1uYOUgTAA==}
|
||||
engines: {node: '>=20.18'}
|
||||
'@cspell/cspell-worker@10.0.1':
|
||||
resolution: {integrity: sha512-L2bJerfuYOls2wEknm8FmynLtj/G7O4UqX9I/HznRggEW6i2yZIxagDetpVDNowpyavNHJ3SJtUFiyMiZc16Sw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/dict-ada@4.1.1':
|
||||
resolution: {integrity: sha512-E+0YW9RhZod/9Qy2gxfNZiHJjCYFlCdI69br1eviQQWB8yOTJX0JHXLs79kOYhSW0kINPVUdvddEBe6Lu6CjGQ==}
|
||||
|
|
@ -320,39 +320,39 @@ packages:
|
|||
'@cspell/dict-zig@1.0.0':
|
||||
resolution: {integrity: sha512-XibBIxBlVosU06+M6uHWkFeT0/pW5WajDRYdXG2CgHnq85b0TI/Ks0FuBJykmsgi2CAD3Qtx8UHFEtl/DSFnAQ==}
|
||||
|
||||
'@cspell/dynamic-import@9.8.0':
|
||||
resolution: {integrity: sha512-wMgb32lqG9g6lCipUQsY9Bk5idXPDz7wvzOqEsU1M2HmNYmdE1wfPoRpfQfsVL965iG3+6h8QLr2+8FKpweFEQ==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/dynamic-import@10.0.1':
|
||||
resolution: {integrity: sha512-mP1gdq00aIcH8HxNMqnH11X6BKxLcneDtFgl/ecjIKnaGKwi44m8AndP5Kr4ODaYdl8UUw9O3dJh7KaQXnLHZQ==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/filetypes@9.8.0':
|
||||
resolution: {integrity: sha512-yHvtYn9qt6zykua77sNzTcf7HrG/dpo/+2pCMGSrfSrQypSNT6FUFvMS04W7kwhP86U1GkCjppNykXuoH3cqug==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/filetypes@10.0.1':
|
||||
resolution: {integrity: sha512-Z5S35giU5IW49fBBq6BksUbE8PC4IYPfaKuwl5Nl9jkf/OkAKiBmCowKX45NzRUQInwK/GSqqIUifrNeI6LdLw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/rpc@9.8.0':
|
||||
resolution: {integrity: sha512-t4lHEa254W+PePXNQ1noW7QhQxz/mhsJ9X8LEt0ILzBbPWCJzN+JuaM7EiolIPiwxtfxpMwKx9482kt4eTja7A==}
|
||||
engines: {node: '>=20.18'}
|
||||
'@cspell/rpc@10.0.1':
|
||||
resolution: {integrity: sha512-axSRKv3zEAmBm66iD/FV/MPmE4/Yf7c3PZiwTW894Yd3iEhtn3KPKeTrqQ2/tDrhB1Z2qTsap/Hue0MK4o5WXg==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/strong-weak-map@9.8.0':
|
||||
resolution: {integrity: sha512-HocksAqZ0JcWA5oWO7TIlOCftXVGkPGzbeFlCRRrjJpZmYQH+4NdeEXyQC6T89NGocp45td/CgyBcAaFMy1N9w==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/strong-weak-map@10.0.1':
|
||||
resolution: {integrity: sha512-lenN1DVyPi8nJLSMSJJ670ddTjyiruLueuSZO1qLcxBqUhgxDt/mALu9N/1m6WdOVcg6m/5cLiZVg2KOo2UzRw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@cspell/url@9.8.0':
|
||||
resolution: {integrity: sha512-LY1lFiZLTQF/ma1ilfKmRmFmEOw0RfYhyl0UMhY7/d93b+kiDMhxP/9Qir4+5LyiRncaE3++ZcWno9Hya+ssRg==}
|
||||
engines: {node: '>=20'}
|
||||
'@cspell/url@10.0.1':
|
||||
resolution: {integrity: sha512-abYYgI29wJhWIfWTYrYuzRYDcHQUQ1N5ylnhxYn1NJnIQMqUWGLbDmt12JABtZ+R6h6UNatQrS7rhP86etvJyQ==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
'@emnapi/runtime@1.7.0':
|
||||
resolution: {integrity: sha512-oAYoQnCYaQZKVS53Fq23ceWMRxq5EhQsE0x0RdQ55jT7wagMu5k+fS39v1fiSLrtrLQlXwVINenqhLMtTrV/1Q==}
|
||||
|
||||
'@fortawesome/fontawesome-common-types@7.1.0':
|
||||
resolution: {integrity: sha512-l/BQM7fYntsCI//du+6sEnHOP6a74UixFyOYUyz2DLMXKx+6DEhfR3F2NYGE45XH1JJuIamacb4IZs9S0ZOWLA==}
|
||||
'@fortawesome/fontawesome-common-types@7.3.0':
|
||||
resolution: {integrity: sha512-X/vND0Y1l9fVJ9O79UgtZnXSpz4aNF3bXlDxiJAEAm6kgeSftp9wjjBPgqzazJV8YlmxfRoeXNfSCJ48sf/Hhw==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
'@fortawesome/fontawesome-svg-core@7.1.0':
|
||||
resolution: {integrity: sha512-fNxRUk1KhjSbnbuBxlWSnBLKLBNun52ZBTcs22H/xEEzM6Ap81ZFTQ4bZBxVQGQgVY0xugKGoRcCbaKjLQ3XZA==}
|
||||
'@fortawesome/fontawesome-svg-core@7.3.0':
|
||||
resolution: {integrity: sha512-MFbTNLDWkLJwbozDvHOZ7hwyDjQcBMBattlcOQ6ZmV5YD9bBrqdl1rNtmVjQ/lzqveXXX3sMz2Ew6fAgXoxmkw==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
'@fortawesome/free-solid-svg-icons@7.1.0':
|
||||
resolution: {integrity: sha512-Udu3K7SzAo9N013qt7qmm22/wo2hADdheXtBfxFTecp+ogsc0caQNRKEb7pkvvagUGOpG9wJC1ViH6WXs8oXIA==}
|
||||
'@fortawesome/free-solid-svg-icons@7.3.0':
|
||||
resolution: {integrity: sha512-YxI/CuwWeI3nPIoYU//vkDS+3ige/67DPZ6XwMATpYEFESzO9L8zfJOKllGRgIlpT/uebrZCcvAzp3peD7GmTw==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
'@img/sharp-darwin-arm64@0.33.5':
|
||||
|
|
@ -629,10 +629,6 @@ packages:
|
|||
resolution: {integrity: sha512-uA9fOtlTRC0iqKfzff1W34DXUA3GyVqbUaeo3Rw3d4gd1eavKVCETXrn3NzO74W+UVkG3UHu8WxUi+XvKI/huA==}
|
||||
engines: {node: '>= 10.16.0'}
|
||||
|
||||
callsites@3.1.0:
|
||||
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
chalk-template@1.1.2:
|
||||
resolution: {integrity: sha512-2bxTP2yUH7AJj/VAXfcA+4IcWGdQ87HwBANLt5XxGTeomo8yG0y95N1um9i5StvhT/Bl0/2cARA5v1PpPXUxUA==}
|
||||
engines: {node: '>=14.16'}
|
||||
|
|
@ -658,10 +654,6 @@ packages:
|
|||
resolution: {integrity: sha512-vp42956Ax06WwaaheYEqEOgXZ3VKJxgccZ0gJL0HpyiupkIS9RVJFo5eDU1BPeQAOqz+cclndZg4DCqG1sJReQ==}
|
||||
engines: {node: ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
|
||||
|
||||
clear-module@4.1.3:
|
||||
resolution: {integrity: sha512-XdLrg7BnbXKntyrbs2dNjDN9CVoTQ+WV0i7jT5/r9ahzAaSDSzC9e2OVZB/QVwbxBb1/1AeObzjlxsYk5HFvww==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
color-convert@2.0.1:
|
||||
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
||||
engines: {node: '>=7.0.0'}
|
||||
|
|
@ -692,52 +684,52 @@ packages:
|
|||
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
|
||||
engines: {node: '>= 12'}
|
||||
|
||||
comment-json@4.6.2:
|
||||
resolution: {integrity: sha512-R2rze/hDX30uul4NZoIZ76ImSJLFxn/1/ZxtKC1L77y2X1k+yYu1joKbAtMA2Fg3hZrTOiw0I5mwVMo0cf250w==}
|
||||
comment-json@5.0.0:
|
||||
resolution: {integrity: sha512-uiqLcOiVDJtBP8WGkZHEP+FZIhTzP1dxvn59EfoYUi9gqupjrBWVQkO2atDrbnKPwLeotFYDsuNb26uBMqB+hw==}
|
||||
engines: {node: '>= 6'}
|
||||
|
||||
concat-map@0.0.1:
|
||||
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
||||
|
||||
cspell-config-lib@9.8.0:
|
||||
resolution: {integrity: sha512-gMJBAgYPvvO+uDFLUcGWaTu6/e+r8mm4GD4rQfWa/yV4F9fj+yOYLIMZqLWRvT1moHZX1FxyVvUbJcmZ1gfebg==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-config-lib@10.0.1:
|
||||
resolution: {integrity: sha512-hMpo/0j6k7pbiqrLDOLJKD2IGP9XwhjKf2miiM6p84Xeo4nyuFZaxxDCQ68R851HSYFrrdltgpoipMbj1h2Tnw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
cspell-dictionary@9.8.0:
|
||||
resolution: {integrity: sha512-QW4hdkWcrxZA1QNqi26U0S/U3/V+tKCm7JaaesEJW2F6Ao+23AbHVwidyAVtXaEhGkn6PxB+epKrrAa6nE69qA==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-dictionary@10.0.1:
|
||||
resolution: {integrity: sha512-3cZ659vgsZWkzGQJR/sNqGDVt/OnvTSieLKI76V++4t1bHJfochb9ZrrwsuMsb1VPGiyqClUP1/O6WrefF/FVg==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
cspell-gitignore@9.8.0:
|
||||
resolution: {integrity: sha512-SDUa1DmSfT20+JH7XtyzcEL9KfurneoR/XbmlrtPQZP/LUHXh3yz4x/0vFIkEFXNWdSckY0QdWTz8DaxClCf4Q==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-gitignore@10.0.1:
|
||||
resolution: {integrity: sha512-wN23U61Mx6qPJN3CesOmBU9vnbJ0jQm/ylK0iaVui3CcnO7Zzl5qLu5mPHUzGQGm8yso6qjyxqo16Ho7LpZGOQ==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
hasBin: true
|
||||
|
||||
cspell-glob@9.8.0:
|
||||
resolution: {integrity: sha512-Uvj/iHXs+jpsJyIEnhEoJTWXb1GVyZ9T05L5JFtZfsQNXrh8SRDQPscjxbg4okKr63N7WevfioQum/snHNYvmw==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-glob@10.0.1:
|
||||
resolution: {integrity: sha512-7bII9J3aSSpZDwhx7w+zfQXbMxHZQ3be0ilUp5bHrsjz6o07v/NqOHMGcwKdPn1sw2dxDz9sv057xE5pqXnSdw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
cspell-grammar@9.8.0:
|
||||
resolution: {integrity: sha512-01XMq2vhPS0Gvxnfed9uvOwH+3cXddHYxW0PwCE+SZdcC6TN8yM6glByuLt1qFustAmQVE5GSr7uAY9o4pZQRg==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-grammar@10.0.1:
|
||||
resolution: {integrity: sha512-xC9AFYmaI9wsO//a7S5tdDGKGJVD5UEEsTg+Up2fi7lPfXIryisYmV6tePNL1SEg0idYss4ja8LUZ3Mib09BjQ==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
hasBin: true
|
||||
|
||||
cspell-io@9.8.0:
|
||||
resolution: {integrity: sha512-JINaEWQEzR4f2upwdZOFcft+nBvQgizJfrOLszxG3p+BIzljnGklqE/nUtLFZpBu0oMJvuM/Fd+GsWor0yP7Xw==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-io@10.0.1:
|
||||
resolution: {integrity: sha512-8C2ka07faxflnaqEBO3pektS21XViE/SEHT7F5ZD1ou7FyMR5u3xawTBJSczClfsxLt/WYeztBYrpmGAjmjksw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
cspell-lib@9.8.0:
|
||||
resolution: {integrity: sha512-G2TtPcye5QE5ev3YgWq42UOJLpTZ6naO/47oIm+jmeSYbgnbcOSThnEE7uMycx+TTNOz/vJVFpZmQyt0bWCftw==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-lib@10.0.1:
|
||||
resolution: {integrity: sha512-RpsIPiLzc4/YMW8BMRKpyJ81x439qjYWcqgdKeXnMkbKM88J9PexzutfFf/4v97v96KzfNitEzMpbI0uj8OeUg==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
|
||||
cspell-trie-lib@9.8.0:
|
||||
resolution: {integrity: sha512-GXIyqxya8QLp6SjKsAN9w3apvt1Ww7GKcZvTBaP76OfLoyb1QC6unwmObY2cZs1manCntGwHrgU6vFNuXnTzpw==}
|
||||
engines: {node: '>=20'}
|
||||
cspell-trie-lib@10.0.1:
|
||||
resolution: {integrity: sha512-BFvhalSkRQFjKrZ//FKK7fRGrZFpifnxB5AwCkzsIsBZqicsfafcQ1xP21qpb0QqyV/IomjNgviG+tRJs+0rMw==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
peerDependencies:
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
|
||||
cspell@9.8.0:
|
||||
resolution: {integrity: sha512-qL0VErMSn8BDxaPxcV+9uenffgjPS+5Jfz+m4rCsvYjzLwr7AaaJBWWSV2UiAe/4cturae8n8qzxiGnbbazkRw==}
|
||||
engines: {node: '>=20.18'}
|
||||
cspell@10.0.1:
|
||||
resolution: {integrity: sha512-Gg6w/flT3fKfl3la62hfTnhtNnDQ+9mU7kUhVqw/axl/Ms4oENw0oJMkWFIoj4f6nL/SDPz7KcPXd2XbkKFNmQ==}
|
||||
engines: {node: '>=22.18.0'}
|
||||
hasBin: true
|
||||
|
||||
css-select@5.2.2:
|
||||
|
|
@ -996,9 +988,9 @@ packages:
|
|||
engines: {node: '>=16.x'}
|
||||
hasBin: true
|
||||
|
||||
import-fresh@3.3.1:
|
||||
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
||||
engines: {node: '>=6'}
|
||||
import-fresh@4.0.0:
|
||||
resolution: {integrity: sha512-Fpi660c7VPDM3fPKYovStd9IP1CPOikf6v/dGxJJMmHPcwYQIMJ4W7kO1avBYEpMqkCh+Dx3Ln6H7VYqgztLjw==}
|
||||
engines: {node: '>=22.15'}
|
||||
|
||||
import-meta-resolve@4.2.0:
|
||||
resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==}
|
||||
|
|
@ -1095,8 +1087,8 @@ packages:
|
|||
linkify-it@5.0.2:
|
||||
resolution: {integrity: sha512-ONTm2jCMAVZjgQa/Fy1kScXsuOoF5NPTsoFBdE1KVIZ2vAh/r9+Bqo+0jINCBYnavTPQZz38QzFTme79ENoN3Q==}
|
||||
|
||||
liquidjs@10.25.7:
|
||||
resolution: {integrity: sha512-rPCjJLiD4eDhQjvv964AeXFC+HbeYBbZrd7Z82Q6hqv1lX7G+5w4SJcKLn9CAAAwHI4aS3dTdo083UB79K3pDA==}
|
||||
liquidjs@10.27.2:
|
||||
resolution: {integrity: sha512-kvknfAEtOHjHkAAv7GxLEJh8ghpMQm3Fc4uWVyF7hERSTsSRsdC7saWs0p5aDG7GDcWsu5o+T4232O+8KZO55w==}
|
||||
engines: {node: '>=16'}
|
||||
hasBin: true
|
||||
|
||||
|
|
@ -1304,14 +1296,6 @@ packages:
|
|||
resolution: {integrity: sha512-XTUaK0hXMCu2jszWE584JGQT7y284TmMV9l/HX3rnG5uo3rHI/uHU56XTyyyPFjeWEBxECbAi0CaFDJOONtG0Q==}
|
||||
hasBin: true
|
||||
|
||||
parent-module@1.0.1:
|
||||
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
||||
engines: {node: '>=6'}
|
||||
|
||||
parent-module@2.0.0:
|
||||
resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
parse-entities@4.0.2:
|
||||
resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
|
||||
|
||||
|
|
@ -1362,8 +1346,8 @@ packages:
|
|||
resolution: {integrity: sha512-7Hc+IvlQ7hlaIfQFZnxlRl0jnpWq2qwibORBhQYIb0QbNtuicc5ZxvKkVT71HJ4Py1wSZ/3VR1r8LfkCtoCzhw==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
|
||||
prettier@3.8.1:
|
||||
resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
|
||||
prettier@3.9.4:
|
||||
resolution: {integrity: sha512-yWG/o/4oJfo036EKAfK6ACAoDOfHeRHx4tuxkfBZiauURiaSmYwlpOr5LQqKtIkRD2z1PLteme2WoxEnj4tHTg==}
|
||||
engines: {node: '>=14'}
|
||||
hasBin: true
|
||||
|
||||
|
|
@ -1392,10 +1376,6 @@ packages:
|
|||
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
||||
engines: {node: '>=8.10.0'}
|
||||
|
||||
resolve-from@4.0.0:
|
||||
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||
resolve-from@5.0.0:
|
||||
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
|
||||
engines: {node: '>=8'}
|
||||
|
|
@ -1622,7 +1602,7 @@ snapshots:
|
|||
|
||||
'@11ty/eleventy-utils@2.0.7': {}
|
||||
|
||||
'@11ty/eleventy@3.1.5':
|
||||
'@11ty/eleventy@3.1.6':
|
||||
dependencies:
|
||||
'@11ty/dependency-tree': 4.0.2
|
||||
'@11ty/dependency-tree-esm': 2.0.4
|
||||
|
|
@ -1643,7 +1623,7 @@ snapshots:
|
|||
iso-639-1: 3.1.5
|
||||
js-yaml: 4.1.1
|
||||
kleur: 4.1.5
|
||||
liquidjs: 10.25.7
|
||||
liquidjs: 10.27.2
|
||||
luxon: 3.7.2
|
||||
markdown-it: 14.2.0
|
||||
minimist: 1.2.8
|
||||
|
|
@ -1678,7 +1658,7 @@ snapshots:
|
|||
minimatch: 3.1.5
|
||||
slash: 3.0.0
|
||||
|
||||
'@cspell/cspell-bundled-dicts@9.8.0':
|
||||
'@cspell/cspell-bundled-dicts@10.0.1':
|
||||
dependencies:
|
||||
'@cspell/dict-ada': 4.1.1
|
||||
'@cspell/dict-al': 1.1.1
|
||||
|
|
@ -1740,25 +1720,25 @@ snapshots:
|
|||
'@cspell/dict-vue': 3.0.5
|
||||
'@cspell/dict-zig': 1.0.0
|
||||
|
||||
'@cspell/cspell-json-reporter@9.8.0':
|
||||
'@cspell/cspell-json-reporter@10.0.1':
|
||||
dependencies:
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
|
||||
'@cspell/cspell-performance-monitor@9.8.0': {}
|
||||
'@cspell/cspell-performance-monitor@10.0.1': {}
|
||||
|
||||
'@cspell/cspell-pipe@9.8.0': {}
|
||||
'@cspell/cspell-pipe@10.0.1': {}
|
||||
|
||||
'@cspell/cspell-resolver@9.8.0':
|
||||
'@cspell/cspell-resolver@10.0.1':
|
||||
dependencies:
|
||||
global-directory: 5.0.0
|
||||
|
||||
'@cspell/cspell-service-bus@9.8.0': {}
|
||||
'@cspell/cspell-service-bus@10.0.1': {}
|
||||
|
||||
'@cspell/cspell-types@9.8.0': {}
|
||||
'@cspell/cspell-types@10.0.1': {}
|
||||
|
||||
'@cspell/cspell-worker@9.8.0':
|
||||
'@cspell/cspell-worker@10.0.1':
|
||||
dependencies:
|
||||
cspell-lib: 9.8.0
|
||||
cspell-lib: 10.0.1
|
||||
|
||||
'@cspell/dict-ada@4.1.1': {}
|
||||
|
||||
|
|
@ -1887,33 +1867,33 @@ snapshots:
|
|||
|
||||
'@cspell/dict-zig@1.0.0': {}
|
||||
|
||||
'@cspell/dynamic-import@9.8.0':
|
||||
'@cspell/dynamic-import@10.0.1':
|
||||
dependencies:
|
||||
'@cspell/url': 9.8.0
|
||||
'@cspell/url': 10.0.1
|
||||
import-meta-resolve: 4.2.0
|
||||
|
||||
'@cspell/filetypes@9.8.0': {}
|
||||
'@cspell/filetypes@10.0.1': {}
|
||||
|
||||
'@cspell/rpc@9.8.0': {}
|
||||
'@cspell/rpc@10.0.1': {}
|
||||
|
||||
'@cspell/strong-weak-map@9.8.0': {}
|
||||
'@cspell/strong-weak-map@10.0.1': {}
|
||||
|
||||
'@cspell/url@9.8.0': {}
|
||||
'@cspell/url@10.0.1': {}
|
||||
|
||||
'@emnapi/runtime@1.7.0':
|
||||
dependencies:
|
||||
tslib: 2.8.1
|
||||
optional: true
|
||||
|
||||
'@fortawesome/fontawesome-common-types@7.1.0': {}
|
||||
'@fortawesome/fontawesome-common-types@7.3.0': {}
|
||||
|
||||
'@fortawesome/fontawesome-svg-core@7.1.0':
|
||||
'@fortawesome/fontawesome-svg-core@7.3.0':
|
||||
dependencies:
|
||||
'@fortawesome/fontawesome-common-types': 7.1.0
|
||||
'@fortawesome/fontawesome-common-types': 7.3.0
|
||||
|
||||
'@fortawesome/free-solid-svg-icons@7.1.0':
|
||||
'@fortawesome/free-solid-svg-icons@7.3.0':
|
||||
dependencies:
|
||||
'@fortawesome/fontawesome-common-types': 7.1.0
|
||||
'@fortawesome/fontawesome-common-types': 7.3.0
|
||||
|
||||
'@img/sharp-darwin-arm64@0.33.5':
|
||||
optionalDependencies:
|
||||
|
|
@ -2122,8 +2102,6 @@ snapshots:
|
|||
dependencies:
|
||||
duplexer: 0.1.1
|
||||
|
||||
callsites@3.1.0: {}
|
||||
|
||||
chalk-template@1.1.2:
|
||||
dependencies:
|
||||
chalk: 5.6.2
|
||||
|
|
@ -2152,11 +2130,6 @@ snapshots:
|
|||
dependencies:
|
||||
ansi-colors: 4.1.3
|
||||
|
||||
clear-module@4.1.3:
|
||||
dependencies:
|
||||
parent-module: 2.0.0
|
||||
resolve-from: 5.0.0
|
||||
|
||||
color-convert@2.0.1:
|
||||
dependencies:
|
||||
color-name: 1.1.4
|
||||
|
|
@ -2181,99 +2154,98 @@ snapshots:
|
|||
|
||||
commander@8.3.0: {}
|
||||
|
||||
comment-json@4.6.2:
|
||||
comment-json@5.0.0:
|
||||
dependencies:
|
||||
array-timsort: 1.0.3
|
||||
esprima: 4.0.1
|
||||
|
||||
concat-map@0.0.1: {}
|
||||
|
||||
cspell-config-lib@9.8.0:
|
||||
cspell-config-lib@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
comment-json: 4.6.2
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
comment-json: 5.0.0
|
||||
smol-toml: 1.6.1
|
||||
yaml: 2.9.0
|
||||
|
||||
cspell-dictionary@9.8.0:
|
||||
cspell-dictionary@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/cspell-performance-monitor': 9.8.0
|
||||
'@cspell/cspell-pipe': 9.8.0
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
cspell-trie-lib: 9.8.0(@cspell/cspell-types@9.8.0)
|
||||
'@cspell/cspell-performance-monitor': 10.0.1
|
||||
'@cspell/cspell-pipe': 10.0.1
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
cspell-trie-lib: 10.0.1(@cspell/cspell-types@10.0.1)
|
||||
fast-equals: 6.0.0
|
||||
|
||||
cspell-gitignore@9.8.0:
|
||||
cspell-gitignore@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/url': 9.8.0
|
||||
cspell-glob: 9.8.0
|
||||
cspell-io: 9.8.0
|
||||
'@cspell/url': 10.0.1
|
||||
cspell-glob: 10.0.1
|
||||
cspell-io: 10.0.1
|
||||
|
||||
cspell-glob@9.8.0:
|
||||
cspell-glob@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/url': 9.8.0
|
||||
'@cspell/url': 10.0.1
|
||||
picomatch: 4.0.4
|
||||
|
||||
cspell-grammar@9.8.0:
|
||||
cspell-grammar@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/cspell-pipe': 9.8.0
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
'@cspell/cspell-pipe': 10.0.1
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
|
||||
cspell-io@9.8.0:
|
||||
cspell-io@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/cspell-service-bus': 9.8.0
|
||||
'@cspell/url': 9.8.0
|
||||
'@cspell/cspell-service-bus': 10.0.1
|
||||
'@cspell/url': 10.0.1
|
||||
|
||||
cspell-lib@9.8.0:
|
||||
cspell-lib@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/cspell-bundled-dicts': 9.8.0
|
||||
'@cspell/cspell-performance-monitor': 9.8.0
|
||||
'@cspell/cspell-pipe': 9.8.0
|
||||
'@cspell/cspell-resolver': 9.8.0
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
'@cspell/dynamic-import': 9.8.0
|
||||
'@cspell/filetypes': 9.8.0
|
||||
'@cspell/rpc': 9.8.0
|
||||
'@cspell/strong-weak-map': 9.8.0
|
||||
'@cspell/url': 9.8.0
|
||||
clear-module: 4.1.3
|
||||
cspell-config-lib: 9.8.0
|
||||
cspell-dictionary: 9.8.0
|
||||
cspell-glob: 9.8.0
|
||||
cspell-grammar: 9.8.0
|
||||
cspell-io: 9.8.0
|
||||
cspell-trie-lib: 9.8.0(@cspell/cspell-types@9.8.0)
|
||||
'@cspell/cspell-bundled-dicts': 10.0.1
|
||||
'@cspell/cspell-performance-monitor': 10.0.1
|
||||
'@cspell/cspell-pipe': 10.0.1
|
||||
'@cspell/cspell-resolver': 10.0.1
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
'@cspell/dynamic-import': 10.0.1
|
||||
'@cspell/filetypes': 10.0.1
|
||||
'@cspell/rpc': 10.0.1
|
||||
'@cspell/strong-weak-map': 10.0.1
|
||||
'@cspell/url': 10.0.1
|
||||
cspell-config-lib: 10.0.1
|
||||
cspell-dictionary: 10.0.1
|
||||
cspell-glob: 10.0.1
|
||||
cspell-grammar: 10.0.1
|
||||
cspell-io: 10.0.1
|
||||
cspell-trie-lib: 10.0.1(@cspell/cspell-types@10.0.1)
|
||||
env-paths: 4.0.0
|
||||
gensequence: 8.0.8
|
||||
import-fresh: 3.3.1
|
||||
import-fresh: 4.0.0
|
||||
resolve-from: 5.0.0
|
||||
vscode-languageserver-textdocument: 1.0.12
|
||||
vscode-uri: 3.1.0
|
||||
xdg-basedir: 5.1.0
|
||||
|
||||
cspell-trie-lib@9.8.0(@cspell/cspell-types@9.8.0):
|
||||
cspell-trie-lib@10.0.1(@cspell/cspell-types@10.0.1):
|
||||
dependencies:
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
|
||||
cspell@9.8.0:
|
||||
cspell@10.0.1:
|
||||
dependencies:
|
||||
'@cspell/cspell-json-reporter': 9.8.0
|
||||
'@cspell/cspell-performance-monitor': 9.8.0
|
||||
'@cspell/cspell-pipe': 9.8.0
|
||||
'@cspell/cspell-types': 9.8.0
|
||||
'@cspell/cspell-worker': 9.8.0
|
||||
'@cspell/dynamic-import': 9.8.0
|
||||
'@cspell/url': 9.8.0
|
||||
'@cspell/cspell-json-reporter': 10.0.1
|
||||
'@cspell/cspell-performance-monitor': 10.0.1
|
||||
'@cspell/cspell-pipe': 10.0.1
|
||||
'@cspell/cspell-types': 10.0.1
|
||||
'@cspell/cspell-worker': 10.0.1
|
||||
'@cspell/dynamic-import': 10.0.1
|
||||
'@cspell/url': 10.0.1
|
||||
ansi-regex: 6.2.2
|
||||
chalk: 5.6.2
|
||||
chalk-template: 1.1.2
|
||||
commander: 14.0.3
|
||||
cspell-config-lib: 9.8.0
|
||||
cspell-dictionary: 9.8.0
|
||||
cspell-gitignore: 9.8.0
|
||||
cspell-glob: 9.8.0
|
||||
cspell-io: 9.8.0
|
||||
cspell-lib: 9.8.0
|
||||
cspell-config-lib: 10.0.1
|
||||
cspell-dictionary: 10.0.1
|
||||
cspell-gitignore: 10.0.1
|
||||
cspell-glob: 10.0.1
|
||||
cspell-io: 10.0.1
|
||||
cspell-lib: 10.0.1
|
||||
fast-json-stable-stringify: 2.1.0
|
||||
flatted: 3.4.2
|
||||
semver: 7.8.5
|
||||
|
|
@ -2521,10 +2493,7 @@ snapshots:
|
|||
dependencies:
|
||||
queue: 6.0.2
|
||||
|
||||
import-fresh@3.3.1:
|
||||
dependencies:
|
||||
parent-module: 1.0.1
|
||||
resolve-from: 4.0.0
|
||||
import-fresh@4.0.0: {}
|
||||
|
||||
import-meta-resolve@4.2.0: {}
|
||||
|
||||
|
|
@ -2598,7 +2567,7 @@ snapshots:
|
|||
dependencies:
|
||||
uc.micro: 2.1.0
|
||||
|
||||
liquidjs@10.25.7:
|
||||
liquidjs@10.27.2:
|
||||
dependencies:
|
||||
commander: 10.0.1
|
||||
|
||||
|
|
@ -2913,14 +2882,6 @@ snapshots:
|
|||
'@pagefind/windows-arm64': 1.5.2
|
||||
'@pagefind/windows-x64': 1.5.2
|
||||
|
||||
parent-module@1.0.1:
|
||||
dependencies:
|
||||
callsites: 3.1.0
|
||||
|
||||
parent-module@2.0.0:
|
||||
dependencies:
|
||||
callsites: 3.1.0
|
||||
|
||||
parse-entities@4.0.2:
|
||||
dependencies:
|
||||
'@types/unist': 2.0.11
|
||||
|
|
@ -2970,7 +2931,7 @@ snapshots:
|
|||
posthtml-parser: 0.11.0
|
||||
posthtml-render: 3.0.0
|
||||
|
||||
prettier@3.8.1: {}
|
||||
prettier@3.9.4: {}
|
||||
|
||||
prismjs@1.30.0: {}
|
||||
|
||||
|
|
@ -2990,8 +2951,6 @@ snapshots:
|
|||
dependencies:
|
||||
picomatch: 2.3.1
|
||||
|
||||
resolve-from@4.0.0: {}
|
||||
|
||||
resolve-from@5.0.0: {}
|
||||
|
||||
reusify@1.1.0: {}
|
||||
|
|
|
|||
Loading…
Reference in a new issue