Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Feb 27, 2024
1 parent 6ede668 commit bb0463e
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 64 deletions.
2 changes: 1 addition & 1 deletion demo/starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"@slidev/theme-seriph": "^0.25.0",
"@slidev/types": "workspace:*",
"nodemon": "^3.1.0",
"vue": "^3.4.19"
"vue": "^3.4.20"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@types/resolve": "^1.20.6",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.32",
"@vueuse/core": "^10.8.0",
"@vueuse/core": "^10.9.0",
"bumpp": "^9.3.0",
"cross-env": "^7.0.3",
"cypress": "^13.6.6",
Expand All @@ -56,7 +56,7 @@
"katex": "^0.16.9",
"lint-staged": "^15.2.2",
"mermaid": "^10.8.0",
"playwright-chromium": "^1.41.2",
"playwright-chromium": "^1.42.0",
"pnpm": "^8.15.4",
"rimraf": "^5.0.5",
"shiki": "^1.1.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"@typescript/ata": "^0.9.4",
"@unhead/vue": "^1.8.10",
"@unocss/reset": "^0.58.5",
"@vueuse/core": "^10.8.0",
"@vueuse/math": "^10.8.0",
"@vueuse/core": "^10.9.0",
"@vueuse/math": "^10.9.0",
"@vueuse/motion": "^2.1.0",
"codemirror": "^5.65.16",
"drauu": "^0.4.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/client/setup/codemirror.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { Ref, WritableComputedRef } from 'vue'
import { onClickOutside } from '@vueuse/core'
import { watch } from 'vue'
import Codemirror from 'codemirror'
import CodeMirror from 'codemirror'
import 'codemirror/mode/javascript/javascript'
import 'codemirror/mode/css/css'
import 'codemirror/mode/markdown/markdown'
Expand All @@ -15,7 +15,7 @@ export async function useCodeMirror(
input: Ref<string> | WritableComputedRef<string>,
options: CodeMirror.EditorConfiguration = {},
) {
const cm = Codemirror.fromTextArea(
const cm = CodeMirror.fromTextArea(
textarea.value!,
{
theme: 'vars',
Expand Down

0 comments on commit bb0463e

Please sign in to comment.