Skip to content

Commit adbb5a3

Browse files
authored
chore: bump deps (vuejs#2878)
1 parent 64bae64 commit adbb5a3

File tree

12 files changed

+1041
-852
lines changed

12 files changed

+1041
-852
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.vue

.vitepress/config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,7 @@ export default defineConfigWithTheme<ThemeConfig>({
737737
markdown: {
738738
theme: 'github-dark',
739739
config(md) {
740+
// @ts-expect-error - broken type output in vitepress
740741
md.use(headerPlugin)
741742
// .use(textAdPlugin)
742743
}

.vitepress/headerMdPlugin.ts

-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ export interface AugmentedHeader extends Header {
1919
}
2020

2121
export const headerPlugin = (md: MarkdownIt) => {
22-
md.core.ruler.enable('text_join')
23-
2422
md.renderer.rules.heading_open = (tokens, i, options, env, self) => {
2523
for (const child of tokens[i + 1].children!) {
2624
if (child.type === 'text' && child.content.endsWith('*')) {

.vitepress/theme/components/Home.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { ref, onMounted } from 'vue'
2+
import { onMounted } from 'vue'
33
import SiteMap from './SiteMap.vue'
44
// import NewsLetter from './NewsLetter.vue'
55
import { load, data, base } from './sponsors'

netlify.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build.environment]
2-
NODE_VERSION = "16"
2+
NODE_VERSION = "20"
33

44
[build]
55
publish = ".vitepress/dist"

package.json

+14-23
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,24 @@
77
"dev": "vitepress",
88
"build": "vitepress build",
99
"preview": "vitepress preview",
10-
"preinstall": "npx only-allow pnpm"
10+
"preinstall": "npx only-allow pnpm",
11+
"type": "vue-tsc --noEmit"
1112
},
1213
"dependencies": {
13-
"@vue/repl": "^4.0.1",
14-
"@vue/theme": "^2.2.5",
14+
"@vue/repl": "^4.1.2",
15+
"@vue/theme": "^2.2.8",
1516
"dynamics.js": "^1.1.5",
16-
"gsap": "^3.9.0",
17-
"vitepress": "^1.1.0",
18-
"vue": "^3.4.0"
17+
"gsap": "^3.12.5",
18+
"vitepress": "^1.2.0",
19+
"vue": "^3.4.27"
1920
},
2021
"devDependencies": {
21-
"@types/markdown-it": "^12.2.3",
22-
"@types/node": "^20.10.1",
23-
"terser": "^5.14.2"
22+
"@types/body-scroll-lock": "^3.1.2",
23+
"@types/markdown-it": "^14.1.1",
24+
"@types/node": "^20.12.12",
25+
"terser": "^5.31.0",
26+
"typescript": "^5.4.5",
27+
"vue-tsc": "^2.0.19"
2428
},
25-
"pnpm": {
26-
"overrides": {
27-
"@vitejs/plugin-vue": "5.0.0-beta.1"
28-
},
29-
"peerDependencyRules": {
30-
"ignoreMissing": [
31-
"@algolia/client-search",
32-
"react",
33-
"react-dom",
34-
"@types/react",
35-
"search-insights"
36-
]
37-
}
38-
}
29+
"packageManager": "[email protected]"
3930
}

0 commit comments

Comments
 (0)