chore(deps): update dependency starlight-links-validator to ^0.11.0 (#2614)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: vasfvitor <gitkey@virtuaires.com.br>
This commit is contained in:
renovate[bot]
2024-09-02 19:49:00 +02:00
committed by GitHub
parent 0612978be1
commit e9669e2065
11 changed files with 361 additions and 377 deletions

View File

@@ -76,6 +76,7 @@ export default defineConfig({
}),
starlightBlog({ authors }),
starlightLinksValidator({
errorOnFallbackPages: false,
errorOnRelativeLinks: false,
exclude: ['/plugin/*/#default-permission', '/plugin/*/#permission-table'],
}),

View File

@@ -40,7 +40,7 @@
"sharp": "^0.33.2",
"shiki": "^1.1.7",
"starlight-blog": "^0.12.0",
"starlight-links-validator": "^0.10.0"
"starlight-links-validator": "^0.11.0"
},
"packageManager": "pnpm@9.7.1",
"engines": {

677
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -21,7 +21,7 @@ Si un framework no aparece en esta lista puede que funcione con Tauri sin necesi
<LinkCard title="Next.js" href="/start/frontend/nextjs/" />
<LinkCard title="Nuxt" href="/start/frontend/nuxt/" />
<LinkCard title="Qwik" href="/start/frontend/qwik/" />
<LinkCard title="Svelte" href="/start/frontend/svelte/" />
<LinkCard title="Svelte" href="/start/frontend/sveltekit/" />
<LinkCard title="Vite" href="/start/frontend/vite/" />
<LinkCard title="Webpack" href="/start/frontend/webpack/" />
</CardGrid>

View File

@@ -1,18 +0,0 @@
---
title: Debug
description: Conseils et astuces pour votre débogage
---
import { LinkCard, CardGrid } from '@astrojs/starlight/components';
<CardGrid>
<LinkCard
title="Débogage de l'application"
href="/fr/develop/Debug/application/"
/>
<LinkCard title="Débogage dans VS Code" href="/fr/develop/Debug/vscode/" />
<LinkCard
title="Débogage dans RustRover"
href="/fr/develop/Debug/rustrover/"
/>
</CardGrid>

View File

@@ -1,17 +0,0 @@
---
title: Développement
description: Concepts de base pour le développement avec Tauri
---
import { LinkCard, CardGrid } from '@astrojs/starlight/components';
<CardGrid>
<LinkCard
title="Development Cycle"
href="/fr/guides/develop/development-cycle/"
/>
<LinkCard
title="Mise à jour des dépendances"
href="/fr/guides/develop/updating-dependencies/"
/>
</CardGrid>

View File

@@ -22,7 +22,7 @@ Un framework manque à la liste ? Il peut fonctionner avec Tauri sans configurat
<LinkCard title="Next.js" href="/fr/start/frontend/nextjs/" />
<LinkCard title="Nuxt" href="/fr/start/frontend/nuxt/" />
<LinkCard title="Qwik" href="/fr/start/frontend/qwik/" />
<LinkCard title="Svelte" href="/fr/start/frontend/svelte/" />
<LinkCard title="Svelte" href="/fr/start/frontend/sveltekit/" />
<LinkCard title="Vite" href="/fr/start/frontend/vite/" />
<LinkCard title="Webpack" href="/fr/start/frontend/webpack/" />
</CardGrid>

View File

@@ -6,7 +6,7 @@ description: 调试工作流程的技巧和窍门
import { LinkCard, CardGrid } from '@astrojs/starlight/components';
<CardGrid>
<LinkCard title="应用调试" href="/zh-cn/develop/Debug/application/" />
<LinkCard title="应用调试" href="/zh-cn/develop/debug/application/" />
<LinkCard title="在 VS Code 中调试" href="/zh-cn/develop/debug/vscode/" />
<LinkCard
title="在 RustRover 中调试"

View File

@@ -40,11 +40,14 @@ Make sure to grab the version of [Microsoft Edge Driver][] that matches your Win
import { LinkCard, CardGrid } from '@astrojs/starlight/components';
<CardGrid>
<LinkCard title="Setup" href="/zh-cn/tests/webdriver/example/" />
<LinkCard title="Selenium" href="/zh-cn/tests/webdriver/example/selenium/" />
<LinkCard title="Setup" href="/zh-cn/develop/tests/webdriver/example/" />
<LinkCard
title="Selenium"
href="/zh-cn/develop/tests/webdriver/example/selenium/"
/>
<LinkCard
title="WebdriverIO"
href="/zh-cn/tests/webdriver/example/webdriverio/"
href="/zh-cn/develop/tests/webdriver/example/webdriverio/"
/>
</CardGrid>
@@ -52,7 +55,7 @@ import { LinkCard, CardGrid } from '@astrojs/starlight/components';
The above examples also comes with a CI script to test with GitHub actions, but you may still be interested in the below WebDriver CI guide as it explains the concept a bit more.
<LinkCard title="持续集成 (CI)" href="/start/test/webdriver/ci/" />
<LinkCard title="持续集成 (CI)" href="/zh-cn/develop/tests/webdriver/ci/" />
[webdriver]: https://www.w3.org/TR/webdriver/
[`tauri-driver`]: https://crates.io/crates/tauri-driver

View File

@@ -8,6 +8,6 @@ Tauri 运行时内外测试技术
import { LinkCard, CardGrid } from '@astrojs/starlight/components';
<CardGrid>
<LinkCard title="Mocking" href="/zh-cn/guides/test/mocking/" />
<LinkCard title="WebDriver" href="/zh-cn/test/webdriver/" />
<LinkCard title="Mocking" href="/zh-cn/develop/tests/mocking/" />
<LinkCard title="WebDriver" href="/zh-cn/develop/tests/webdriver/" />
</CardGrid>

View File

@@ -21,7 +21,7 @@ Tauri 与前端无关,支持大多数开箱即用的前端框架。但是,
<LinkCard title="Next.js" href="/zh-cn/start/frontend/nextjs/" />
<LinkCard title="Nuxt" href="/zh-cn/start/frontend/nuxt/" />
<LinkCard title="Qwik" href="/zh-cn/start/frontend/qwik/" />
<LinkCard title="Svelte" href="/zh-cn/start/frontend/svelte/" />
<LinkCard title="Svelte" href="/zh-cn/start/frontend/sveltekit/" />
<LinkCard title="Vite" href="/zh-cn/start/frontend/vite/" />
<LinkCard title="Webpack" href="/zh-cn/start/frontend/webpack/" />
</CardGrid>