chore: bump deps

pull/2065/head
Divyansh Singh 2 years ago
parent 41987b6a88
commit 8b5181446d

@ -3,7 +3,7 @@
"version": "1.0.0-alpha.50",
"description": "Vite & Vue powered static site generator",
"type": "module",
"packageManager": "pnpm@7.28.0",
"packageManager": "pnpm@7.29.1",
"main": "dist/node/index.js",
"types": "types/index.d.ts",
"exports": {
@ -94,7 +94,7 @@
"vue": "^3.2.47"
},
"devDependencies": {
"@clack/prompts": "^0.6.1",
"@clack/prompts": "^0.6.3",
"@mdit-vue/plugin-component": "^0.12.0",
"@mdit-vue/plugin-frontmatter": "^0.12.0",
"@mdit-vue/plugin-headers": "^0.12.0",
@ -103,7 +103,7 @@
"@mdit-vue/plugin-toc": "^0.12.0",
"@mdit-vue/shared": "^0.12.0",
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-commonjs": "23.0.4",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
@ -121,7 +121,7 @@
"@types/markdown-it-emoji": "^2.0.2",
"@types/micromatch": "^4.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^18.14.1",
"@types/node": "^18.14.6",
"@types/prompts": "^2.4.2",
"chokidar": "^3.5.3",
"compression": "^1.7.4",
@ -129,7 +129,7 @@
"cross-spawn": "^7.0.3",
"debug": "^4.3.4",
"enquirer": "^2.3.6",
"esbuild": "^0.17.10",
"esbuild": "^0.17.11",
"escape-html": "^1.0.3",
"execa": "^7.0.0",
"fast-glob": "^3.2.12",
@ -137,7 +137,7 @@
"get-port": "^6.1.2",
"lint-staged": "^13.1.2",
"lodash.template": "^4.5.0",
"lru-cache": "^7.17.0",
"lru-cache": "^7.18.3",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
@ -145,19 +145,19 @@
"markdown-it-emoji": "^2.0.2",
"micromatch": "^4.0.5",
"minimist": "^1.2.8",
"nanoid": "3.3.4",
"nanoid": "^4.0.1",
"npm-run-all": "^4.1.5",
"ora": "5.4.1",
"ora": "^6.1.2",
"path-to-regexp": "^6.2.1",
"picocolors": "^1.0.0",
"pkg-dir": "5.0.0",
"playwright-chromium": "^1.31.1",
"pkg-dir": "^7.0.0",
"playwright-chromium": "^1.31.2",
"polka": "1.0.0-next.22",
"prettier": "^2.8.4",
"prompts": "^2.4.2",
"punycode": "^2.3.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.3",
"rimraf": "^4.4.0",
"rollup": "^3.18.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"semver": "^7.3.8",
@ -165,8 +165,8 @@
"simple-git-hooks": "^2.8.1",
"sirv": "^2.0.2",
"supports-color": "^9.3.1",
"typescript": "~4.9.5",
"vitest": "^0.29.1",
"typescript": "^4.9.5",
"vitest": "^0.29.2",
"vue-tsc": "^1.2.0",
"wait-on": "^7.0.1"
},

File diff suppressed because it is too large Load Diff

@ -8,7 +8,7 @@ import { renderPage } from './render'
import { bundle, okMark, failMark } from './bundle'
import { createRequire } from 'module'
import { pathToFileURL } from 'url'
import pkgDir from 'pkg-dir'
import { packageDirectorySync } from 'pkg-dir'
export async function build(
root?: string,
@ -110,7 +110,7 @@ export async function build(
}
function linkVue() {
const root = pkgDir.sync()
const root = packageDirectorySync()
if (root) {
const dest = path.resolve(root, 'node_modules/vue')
// if user did not install vue by themselves, link VitePress' version

Loading…
Cancel
Save