Merge branch 'main' into rtl

pull/5034/head
Rami Yushuvaev 2 weeks ago committed by GitHub
commit 88a913b77c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -16,6 +16,6 @@
"postcss-rtlcss": "^5.7.1",
"vitepress": "workspace:*",
"vitepress-plugin-group-icons": "^1.6.5",
"vitepress-plugin-llms": "^1.9.1"
"vitepress-plugin-llms": "^1.9.3"
}
}

@ -97,13 +97,13 @@
"dependencies": {
"@docsearch/css": "^4.3.2",
"@docsearch/js": "^4.3.2",
"@iconify-json/simple-icons": "^1.2.58",
"@iconify-json/simple-icons": "^1.2.59",
"@shikijs/core": "^3.15.0",
"@shikijs/transformers": "^3.15.0",
"@shikijs/types": "^3.15.0",
"@types/markdown-it": "^14.1.2",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/devtools-api": "^8.0.3",
"@vue/devtools-api": "^8.0.5",
"@vue/shared": "^3.5.24",
"@vueuse/core": "^14.0.0",
"@vueuse/integrations": "^14.0.0",
@ -131,7 +131,6 @@
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@types/cross-spawn": "^6.0.6",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/lodash.template": "^4.5.3",
"@types/mark.js": "^8.11.12",
@ -143,10 +142,10 @@
"@types/picomatch": "^4.0.2",
"@types/prompts": "^2.4.9",
"chokidar": "^4.0.3",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog": "^7.1.1",
"conventional-changelog-angular": "^8.1.0",
"cross-spawn": "^7.0.6",
"debug": "^4.4.3",
"esbuild": "^0.25.0",
"esbuild": "^0.25.12",
"execa": "^9.6.0",
"fs-extra": "^11.3.2",
"get-port": "^7.1.0",
@ -164,6 +163,7 @@
"markdown-it-mathjax3": "^4.3.2",
"minimist": "^1.2.8",
"nanoid": "^5.1.6",
"obug": "^2.0.0",
"ora": "^9.0.0",
"oxc-minify": "^0.98.0",
"p-map": "^7.0.4",
@ -189,7 +189,7 @@
"tinyglobby": "^0.2.15",
"typescript": "^5.9.3",
"vitest": "4.0.0-beta.4",
"vue-tsc": "^3.1.3",
"vue-tsc": "^3.1.4",
"wait-on": "^9.0.3"
},
"peerDependencies": {

File diff suppressed because it is too large Load Diff

@ -1,4 +1,4 @@
import _debug from 'debug'
import { createDebug } from 'obug'
import fs from 'fs-extra'
import path from 'node:path'
import c from 'picocolors'
@ -29,7 +29,7 @@ export { resolvePages } from './plugins/dynamicRoutesPlugin'
export { resolveSiteDataByRoute } from './shared'
export * from './siteConfig'
const debug = _debug('vitepress:config')
const debug = createDebug('vitepress:config')
const resolve = (root: string, file: string) =>
normalizePath(path.resolve(root, `.vitepress`, file))

@ -1,5 +1,5 @@
import { resolveTitleFromToken } from '@mdit-vue/shared'
import _debug from 'debug'
import { createDebug } from 'obug'
import fs from 'fs-extra'
import { LRUCache } from 'lru-cache'
import path from 'node:path'
@ -22,7 +22,7 @@ import {
import { getGitTimestamp } from './utils/getGitTimestamp'
import { processIncludes } from './utils/processIncludes'
const debug = _debug('vitepress:md')
const debug = createDebug('vitepress:md')
const cache = new LRUCache<string, MarkdownCompileResult>({ max: 1024 })
export interface MarkdownCompileResult {

@ -1,4 +1,4 @@
import _debug from 'debug'
import { createDebug } from 'obug'
import fs from 'fs-extra'
import MiniSearch from 'minisearch'
import path from 'node:path'
@ -10,7 +10,7 @@ import { createMarkdownRenderer } from '../markdown/markdown'
import { getLocaleForPath, slash, type MarkdownEnv } from '../shared'
import { processIncludes } from '../utils/processIncludes'
const debug = _debug('vitepress:local-search')
const debug = createDebug('vitepress:local-search')
const LOCAL_SEARCH_INDEX_ID = '@localSearchIndex'
const LOCAL_SEARCH_INDEX_REQUEST_PATH = '/' + LOCAL_SEARCH_INDEX_ID

@ -1,11 +1,11 @@
import { spawn, sync } from 'cross-spawn'
import _debug from 'debug'
import { createDebug } from 'obug'
import fs from 'node:fs'
import path from 'node:path'
import { Transform, type TransformCallback } from 'node:stream'
import { slash } from '../shared'
const debug = _debug('vitepress:git')
const debug = createDebug('vitepress:git')
const cache = new Map<string, number>()
const RS = 0x1e

Loading…
Cancel
Save