Skip to content

Commit a070a33

Browse files
committed
docs(en): merging all conflicts
2 parents ef4a90c + 63c27c4 commit a070a33

File tree

191 files changed

+8188
-134
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+8188
-134
lines changed

.vitepress/components.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,18 @@ export {}
88
/* prettier-ignore */
99
declare module 'vue' {
1010
export interface GlobalComponents {
11+
Advanced: typeof import('./components/Advanced.vue')['default']
1112
ArrowDown: typeof import('./components/ArrowDown.vue')['default']
1213
BlogIndex: typeof import('./components/BlogIndex.vue')['default']
1314
Box: typeof import('./components/Box.vue')['default']
1415
Contributors: typeof import('./components/Contributors.vue')['default']
1516
CourseLink: typeof import('./components/CourseLink.vue')['default']
17+
CRoot: typeof import('./components/CRoot.vue')['default']
18+
Deprecated: typeof import('./components/Deprecated.vue')['default']
19+
Experimental: typeof import('./components/Experimental.vue')['default']
1620
FeaturesList: typeof import('./components/FeaturesList.vue')['default']
1721
HomePage: typeof import('./components/HomePage.vue')['default']
1822
ListItem: typeof import('./components/ListItem.vue')['default']
19-
NonProjectOption: typeof import('./components/NonProjectOption.vue')['default']
2023
Version: typeof import('./components/Version.vue')['default']
2124
}
2225
}

.vitepress/components/Advanced.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<Badge type="danger" title="This is an advanced API intended for library authors and framework integrations. Most users should not need this." class="cursor-help">
3+
advanced
4+
</Badge>
5+
</template>

.vitepress/components/CRoot.vue

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<Badge type="warning" title="This options is only available in the top level config. You cannot specify it as an option of a test project." class="underline decoration-dotted cursor-help">
3+
<div i-carbon:document-configuration class="my-1 -mx-1" />
4+
</Badge>
5+
</template>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<Badge type="danger">
3+
deprecated
4+
</Badge>
5+
</template>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<template>
2+
<Badge type="warning" title="This feature is experimental and does not follow SemVer." class="cursor-help">
3+
experimental
4+
</Badge>
5+
</template>

.vitepress/components/FeaturesList.vue

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
<template>
2+
<<<<<<< HEAD
23
<ul class="features-list" dir="auto" flex="~ col gap2 md:gap-3">
4+
=======
5+
<ul
6+
class="features-list"
7+
dir="auto"
8+
flex="~ col gap2 md:gap-3"
9+
>
10+
<ListItem><a target="_blank" href="https://vitejs.dev" rel="noopener noreferrer">Vite</a>'s config, transformers, resolvers, and plugins</ListItem>
11+
<ListItem>Use the same setup from your app to run the tests!</ListItem>
12+
<ListItem>Smart & instant watch mode, like HMR for tests!</ListItem>
13+
<ListItem>Component testing for Vue, React, Svelte, Lit, Marko and more</ListItem>
14+
<ListItem>Out-of-the-box TypeScript / JSX support</ListItem>
15+
<ListItem>ESM first, top level await</ListItem>
16+
<ListItem>Benchmarking support with <a target="_blank" href="https://github.com/tinylibs/tinybench" rel="noopener noreferrer">Tinybench</a></ListItem>
17+
<ListItem>Filtering, timeouts, concurrent for suite and tests</ListItem>
18+
<ListItem><a href="/guide/projects">Projects</a> support</ListItem>
19+
>>>>>>> 63c27c40d2833c42ec624f3076c90acd960fe8f9
320
<ListItem>
421
522
<a target="_blank" href="https://vitejs.dev" rel="noopener noreferrer">Vite</a>

.vitepress/components/NonProjectOption.vue

Lines changed: 0 additions & 10 deletions
This file was deleted.

.vitepress/components/Version.vue

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
<script setup lang="ts">
22
import { VPBadge } from 'vitepress/theme'
3+
4+
const { type = 'stable' } = defineProps<{
5+
type?: 'stable' | 'experimental'
6+
}>()
37
</script>
48

59
<template>
6-
<VPBadge type="info">
10+
<VPBadge
11+
:type="type === 'experimental' ? 'warning' : 'info'"
12+
:title="type === 'experimental' ? 'This feature is experimental and does not follow SemVer.' : undefined"
13+
>
714
<slot />+
815
</VPBadge>
916
</template>

0 commit comments

Comments
 (0)