Skip to content

Commit 554627b

Browse files
committed
fix: temporary lock vite to 8.2 for regression that affect unocss
1 parent 5cbe22b commit 554627b

5 files changed

Lines changed: 187 additions & 184 deletions

File tree

docs/features/rough-marker.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,17 @@ Use `v-mark.underline` for the underline mark, `v-mark.circle` for the circle ma
3434
To show a mark for a range of clicks, pass an array with the first and last click:
3535

3636
```vue
37-
<span v-mark="[2, 4]">Shown from click 2 through click 3</span>
37+
<span v-mark="[2, 4]">
38+
Shown from click 2 through click 3
39+
</span>
3840
```
3941

4042
The end of the range is exclusive, so the mark is hidden again when click 4 is reached. The same range can be used with the object syntax:
4143

4244
```vue
43-
<span v-mark="{ at: [2, 4], type: 'circle' }">Marked temporarily</span>
45+
<span v-mark="{ at: [2, 4], type: 'circle' }">
46+
Marked temporarily
47+
</span>
4448
```
4549

4650
#### Options

packages/slidev/node/syntax/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export async function useMarkdownItPlugins(
2525
const { data: { features, config }, utils: { katexOptions } } = options
2626

2727
md.use(MarkdownItSnippet, options)
28-
// @ts-expect-error @shikijs/markdown-it types expect MarkdownItAsync, but MarkdownExit is API-compatible
2928
md.use(await MarkdownItShiki(options))
3029
md.use(MarkdownItCodeblocks, options, codeblockTransformers)
3130

packages/vscode/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,6 @@
640640
"tm-grammars": "catalog:frontend",
641641
"ts-json-schema-generator": "catalog:vscode",
642642
"volar-service-prettier": "catalog:vscode",
643-
"volar-service-yaml": "catalog:vscode",
644643
"vscode-uri": "catalog:vscode",
645644
"yaml-language-server": "catalog:vscode"
646645
}

0 commit comments

Comments
 (0)