chore: upgrade deps

This commit is contained in:
YunYouJun 2023-10-21 17:52:38 +08:00
parent f311f99532
commit 5aa1eadc29
10 changed files with 725 additions and 618 deletions

View File

@ -20,10 +20,10 @@
"valaxy-theme-press": "link:../packages/valaxy-theme-press"
},
"devDependencies": {
"@iconify-json/simple-icons": "^1.1.74",
"@iconify-json/simple-icons": "^1.1.75",
"nodemon": "^3.0.1",
"vite": "^4.4.11",
"vitepress": "1.0.0-rc.20",
"vue": "^3.3.4"
"vite": "^4.5.0",
"vitepress": "1.0.0-rc.22",
"vue": "^3.3.6"
}
}

View File

@ -3,7 +3,7 @@
"type": "module",
"version": "0.15.7",
"private": true,
"packageManager": "pnpm@8.9.0",
"packageManager": "pnpm@8.9.2",
"description": "📄 Vite & Vue powered static blog generator.",
"author": {
"email": "me@yunyoujun.cn",
@ -48,32 +48,32 @@
"prepare": "husky install"
},
"devDependencies": {
"@antfu/eslint-config": "1.0.0-beta.24",
"@antfu/eslint-config": "1.0.0-beta.27",
"@iconify-json/logos": "^1.1.37",
"@iconify-json/vscode-icons": "^1.1.28",
"@microsoft/api-extractor": "^7.38.0",
"@types/debug": "^4.1.9",
"@types/markdown-it-attrs": "^4.1.1",
"@types/markdown-it-container": "^2.0.7",
"@types/markdown-it-emoji": "^2.0.2",
"@types/node": "^20.8.4",
"@types/prompts": "^2.4.6",
"@types/resolve": "^1.20.3",
"@types/semver": "^7.5.3",
"@types/debug": "^4.1.10",
"@types/markdown-it-attrs": "^4.1.2",
"@types/markdown-it-container": "^2.0.8",
"@types/markdown-it-emoji": "^2.0.3",
"@types/node": "^20.8.7",
"@types/prompts": "^2.4.7",
"@types/resolve": "^1.20.4",
"@types/semver": "^7.5.4",
"cross-env": "^7.0.3",
"cypress": "^13.3.0",
"eslint": "^8.51.0",
"cypress": "^13.3.2",
"eslint": "^8.52.0",
"eslint-plugin-cypress": "^2.15.1",
"https-localhost": "^4.7.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"lint-staged": "^15.0.2",
"prompts": "^2.4.2",
"rimraf": "^5.0.5",
"stylelint": "^15.10.3",
"stylelint": "^15.11.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^11.0.0",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"valaxy": "workspace:*",
@ -85,7 +85,7 @@
"valaxy-theme-press": "workspace:*",
"valaxy-theme-yun": "workspace:*",
"vitest": "^0.34.6",
"vue-tsc": "1.8.18",
"vue-tsc": "1.8.19",
"zx": "^7.2.3"
},
"pnpm": {

4
packages/shims.d.ts vendored
View File

@ -10,14 +10,14 @@ declare module '@docsearch/react/dist/esm/types' {
}
declare module '*.md' {
import { type DefineComponent } from 'vue'
import type { DefineComponent } from 'vue'
const component: DefineComponent<object, object, any>
export default component
}
declare module '*.vue' {
import { type DefineComponent } from 'vue'
import type { DefineComponent } from 'vue'
const component: DefineComponent<object, object, any>
export default component

View File

@ -19,11 +19,11 @@
"dependencies": {
"@explosions/fireworks": "^0.0.2",
"@iconify-json/ant-design": "^1.1.10",
"@iconify-json/simple-icons": "^1.1.74",
"@iconify-json/simple-icons": "^1.1.75",
"animejs": "^3.2.1"
},
"devDependencies": {
"@types/animejs": "^3.1.8",
"@types/animejs": "^3.1.10",
"valaxy": "workspace:*",
"valaxy-addon-waline": "workspace:*"
}

View File

@ -1,5 +1,5 @@
import { initValaxyConfig } from 'valaxy'
import { type UserModule } from '../types'
import type { UserModule } from '../types'
// https://unhead-schema-org.harlanzw.com/
export const install: UserModule = async ({ head, isClient, router }) => {

View File

@ -1,5 +1,5 @@
import fs from 'fs-extra'
import { type ResolvedValaxyOptions } from 'valaxy'
import type { ResolvedValaxyOptions } from 'valaxy'
import { ensurePrefix } from '@antfu/utils'
import consola from 'consola'
import fg from 'fast-glob'

View File

@ -1,4 +1,4 @@
import { type PathLike } from 'node:fs'
import type { PathLike } from 'node:fs'
import { access } from 'node:fs/promises'
export async function exists(path: PathLike) {

View File

@ -5,18 +5,18 @@ import type anchorPlugin from 'markdown-it-anchor'
import type { KatexOptions } from 'katex'
import {
type FrontmatterPluginOptions,
import type {
FrontmatterPluginOptions,
} from '@mdit-vue/plugin-frontmatter'
import {
type HeadersPluginOptions,
import type {
HeadersPluginOptions,
} from '@mdit-vue/plugin-headers'
import { type SfcPluginOptions } from '@mdit-vue/plugin-sfc'
import { type TocPluginOptions } from '@mdit-vue/plugin-toc'
import type { SfcPluginOptions } from '@mdit-vue/plugin-sfc'
import type { TocPluginOptions } from '@mdit-vue/plugin-toc'
// import type { lazyloadOptions } from './plugins/markdown-it/lazyload'
import { type Blocks } from './plugins/markdown-it/container'
import type { Blocks } from './plugins/markdown-it/container'
export type ThemeOptions =
| IThemeRegistration

View File

@ -63,7 +63,7 @@
"@iconify-json/carbon": "^1.1.21",
"@iconify-json/ri": "^1.1.12",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/body-scroll-lock": "^3.1.1",
"@unhead/addons": "^1.7.4",
"@unhead/schema-org": "^1.7.4",
"@unhead/vue": "^1.7.4",
@ -102,21 +102,21 @@
"open": "9.1.0",
"ora": "^7.0.1",
"pascalcase": "^2.0.0",
"pinia": "^2.1.6",
"pinia": "^2.1.7",
"qrcode": "^1.5.3",
"sass": "^1.69.2",
"sass": "^1.69.4",
"shiki": "^0.14.5",
"star-markdown-css": "^0.4.2",
"unconfig": "^0.3.11",
"unocss": "^0.56.5",
"unplugin-vue-components": "^0.25.2",
"vanilla-lazyload": "^17.8.4",
"vite": "^4.4.11",
"vanilla-lazyload": "^17.8.5",
"vite": "^4.5.0",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-ssg": "0.23.3",
"vite-ssg-sitemap": "0.5.1",
"vue": "^3.3.4",
"vite-ssg-sitemap": "0.6.0",
"vue": "^3.3.6",
"vue-i18n": "^9.5.0",
"vue-router": "^4.2.5",
"yargs": "^17.7.2"
@ -129,15 +129,15 @@
"@mdit-vue/plugin-title": "^1.0.0",
"@mdit-vue/plugin-toc": "^1.0.0",
"@mdit-vue/shared": "^1.0.0",
"@types/cross-spawn": "^6.0.3",
"@types/ejs": "^3.1.3",
"@types/html-to-text": "^9.0.2",
"@types/katex": "^0.16.3",
"@types/markdown-it": "^13.0.2",
"@types/nprogress": "^0.2.1",
"@types/pascalcase": "^1.0.1",
"@types/qrcode": "^1.5.2",
"@types/yargs": "^17.0.28",
"@types/cross-spawn": "^6.0.4",
"@types/ejs": "^3.1.4",
"@types/html-to-text": "^9.0.3",
"@types/katex": "^0.16.5",
"@types/markdown-it": "^13.0.4",
"@types/nprogress": "^0.2.2",
"@types/pascalcase": "^1.0.2",
"@types/qrcode": "^1.5.4",
"@types/yargs": "^17.0.29",
"debug": "^4.3.4",
"diacritics": "^1.3.0",
"https-localhost": "^4.7.1",

File diff suppressed because it is too large Load Diff