Skip to content

Commit 6f11f7c

Browse files
authored
chore: bump deps (#529)
1 parent 44be8d3 commit 6f11f7c

File tree

4 files changed

+281
-274
lines changed

4 files changed

+281
-274
lines changed

lib/composables/Markdown.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import MarkdownIt from 'markdown-it'
1+
import MarkdownIt, { type Options as MarkdownItOptions } from 'markdown-it'
22
import { type Ref, onUnmounted } from 'vue'
33
import { useRouter } from 'vue-router'
44
import { type LinkAttrs, isCallbackUrl, isExternalUrl, linkPlugin } from './markdown/LinkPlugin'
55

66
export type UseMarkdown = (source: string, inline: boolean) => string
77

8-
export interface UseMarkdownOptions extends MarkdownIt.Options {
8+
export interface UseMarkdownOptions extends MarkdownItOptions {
99
linkAttrs?: LinkAttrs
1010
config?: (md: MarkdownIt) => void
1111
}

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
"@types/body-scroll-lock": "^3.1.2",
4747
"@types/lodash-es": "^4.17.12",
4848
"@types/markdown-it": "^14.1.1",
49-
"@vue/reactivity": "^3.4.26",
50-
"@vue/runtime-core": "^3.4.26",
49+
"@vue/reactivity": "^3.4.27",
50+
"@vue/runtime-core": "^3.4.27",
5151
"@vuelidate/core": "^2.0.3",
5252
"@vuelidate/validators": "^2.0.4",
5353
"@vueuse/core": "^10.9.0",
@@ -60,11 +60,11 @@
6060
"postcss": "^8.4.38",
6161
"postcss-nested": "^6.0.1",
6262
"v-calendar": "^3.1.2",
63-
"vue": "^3.4.26",
63+
"vue": "^3.4.27",
6464
"vue-router": "^4.3.2"
6565
},
6666
"dependencies": {
67-
"@sentry/browser": "^8.0.0-beta.3",
67+
"@sentry/browser": "^8.0.0-rc.2",
6868
"@tanstack/vue-virtual": "3.0.0-beta.62",
6969
"@tinyhttp/content-disposition": "^2.2.0",
7070
"@tinyhttp/cookie": "^2.1.0",
@@ -85,19 +85,19 @@
8585
"@types/body-scroll-lock": "^3.1.2",
8686
"@types/lodash-es": "^4.17.12",
8787
"@types/markdown-it": "^14.1.1",
88-
"@types/node": "^20.12.10",
88+
"@types/node": "^20.12.11",
8989
"@vitejs/plugin-vue": "^5.0.4",
9090
"@vitest/coverage-v8": "^1.6.0",
91-
"@vue/reactivity": "^3.4.26",
92-
"@vue/runtime-core": "^3.4.26",
93-
"@vue/test-utils": "^2.4.5",
91+
"@vue/reactivity": "^3.4.27",
92+
"@vue/runtime-core": "^3.4.27",
93+
"@vue/test-utils": "^2.4.6",
9494
"@vuelidate/core": "^2.0.3",
9595
"@vuelidate/validators": "^2.0.4",
9696
"@vueuse/core": "^10.9.0",
9797
"body-scroll-lock": "4.0.0-beta.0",
9898
"eslint": "^8.57.0",
9999
"fuse.js": "^7.0.0",
100-
"happy-dom": "^14.7.1",
100+
"happy-dom": "^14.10.1",
101101
"histoire": "0.16.5",
102102
"lodash-es": "^4.17.21",
103103
"markdown-it": "^14.1.0",
@@ -112,7 +112,7 @@
112112
"vite": "^5.2.11",
113113
"vitepress": "^1.1.4",
114114
"vitest": "^1.6.0",
115-
"vue": "^3.4.26",
115+
"vue": "^3.4.27",
116116
"vue-router": "^4.3.2",
117117
"vue-tsc": "^1.8.27"
118118
}

0 commit comments

Comments
 (0)