Skip to content

Commit

Permalink
build: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope committed Jan 26, 2024
1 parent ed51700 commit 63730b4
Show file tree
Hide file tree
Showing 6 changed files with 1,379 additions and 1,443 deletions.
3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

pnpm commitlint --edit $1
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

pnpm lint-staged
7 changes: 4 additions & 3 deletions docs/.vuepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ import { createRequire } from 'node:module'
import process from 'node:process'
import { viteBundler } from '@vuepress/bundler-vite'
import { webpackBundler } from '@vuepress/bundler-webpack'
import { defineUserConfig } from '@vuepress/cli'
import { docsearchPlugin } from '@vuepress/plugin-docsearch'
import { googleAnalyticsPlugin } from '@vuepress/plugin-google-analytics'
import { registerComponentsPlugin } from '@vuepress/plugin-register-components'
import { shikiPlugin } from '@vuepress/plugin-shiki'
import { defaultTheme } from '@vuepress/theme-default'
import { getDirname, path } from '@vuepress/utils'
import { defineUserConfig } from 'vuepress'
import type {UserConfig} from 'vuepress';
import { getDirname, path } from 'vuepress/utils'
import {
head,
navbarEn,
Expand Down Expand Up @@ -199,4 +200,4 @@ export default defineUserConfig({
})
: [],
],
})
}) as UserConfig
2 changes: 1 addition & 1 deletion docs/.vuepress/configs/meta.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createRequire } from 'node:module'
import { fs } from '@vuepress/utils'
import { fs } from 'vuepress/utils'

const require = createRequire(import.meta.url)

Expand Down
54 changes: 26 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{
"name": "@vuepress/docs",
"version": "2.0.0-rc.0",
"version": "2.0.0-rc.1",
"private": true,
"type": "module",
"scripts": {
"docs:build": "vuepress-cli build docs --clean-cache --clean-temp",
"docs:build": "vuepress build docs --clean-cache --clean-temp",
"docs:build-webpack": "DOCS_BUNDLER=webpack pnpm docs:build",
"docs:clean": "rimraf docs/.vuepress/.temp docs/.vuepress/.cache docs/.vuepress/dist",
"docs:dev": "vuepress-cli dev docs --clean-cache --clean-temp",
"docs:dev": "vuepress dev docs --clean-cache --clean-temp",
"docs:dev-webpack": "DOCS_BUNDLER=webpack pnpm docs:dev",
"docs:serve": "anywhere -s -h localhost -d docs/.vuepress/dist",
"format": "prettier --write .",
"lint": "eslint --ext .cjs,.js,.ts,.vue . && prettier --check .",
"prepare": "husky",
"release": "pnpm release:check && pnpm release:bump",
"release:bump": "bumpp --commit \"build: publish v%s\"",
"release:check": "pnpm lint && pnpm clean && pnpm build"
Expand All @@ -28,44 +29,41 @@
},
"prettier": "prettier-config-vuepress",
"dependencies": {
"@vuepress/bundler-vite": "2.0.0-rc.0",
"@vuepress/bundler-webpack": "2.0.0-rc.0",
"@vuepress/cli": "2.0.0-rc.0",
"@vuepress/client": "2.0.0-rc.0",
"@vuepress/core": "2.0.0-rc.0",
"@vuepress/plugin-back-to-top": "2.0.0-rc.0",
"@vuepress/plugin-docsearch": "2.0.0-rc.0",
"@vuepress/plugin-external-link-icon": "2.0.0-rc.0",
"@vuepress/plugin-google-analytics": "2.0.0-rc.0",
"@vuepress/plugin-medium-zoom": "2.0.0-rc.0",
"@vuepress/plugin-nprogress": "2.0.0-rc.0",
"@vuepress/plugin-pwa-popup": "2.0.0-rc.0",
"@vuepress/plugin-register-components": "2.0.0-rc.0",
"@vuepress/plugin-search": "2.0.0-rc.0",
"@vuepress/plugin-shiki": "2.0.0-rc.0",
"@vuepress/theme-default": "2.0.0-rc.0",
"@vuepress/utils": "2.0.0-rc.0",
"@vuepress/bundler-vite": "2.0.0-rc.2",
"@vuepress/bundler-webpack": "2.0.0-rc.2",
"@vuepress/plugin-back-to-top": "2.0.0-rc.1",
"@vuepress/plugin-docsearch": "2.0.0-rc.1",
"@vuepress/plugin-external-link-icon": "2.0.0-rc.1",
"@vuepress/plugin-google-analytics": "2.0.0-rc.1",
"@vuepress/plugin-medium-zoom": "2.0.0-rc.1",
"@vuepress/plugin-nprogress": "2.0.0-rc.1",
"@vuepress/plugin-pwa-popup": "2.0.0-rc.1",
"@vuepress/plugin-register-components": "2.0.0-rc.1",
"@vuepress/plugin-search": "2.0.0-rc.1",
"@vuepress/plugin-shiki": "2.0.0-rc.1",
"@vuepress/theme-default": "2.0.0-rc.1",
"anywhere": "^1.6.0",
"sass-loader": "^13.3.3",
"vue": "^3.3.13"
"sass-loader": "^14.0.0",
"vue": "^3.4.15",
"vuepress": "2.0.0-rc.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"bumpp": "^9.2.1",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"bumpp": "^9.3.0",
"eslint": "^8.56.0",
"eslint-config-vuepress": "^4.10.0",
"eslint-config-vuepress-typescript": "^4.10.0",
"husky": "^8.0.3",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"prettier": "^3.2.4",
"prettier-config-vuepress": "^4.4.0",
"rimraf": "^5.0.5",
"sort-package-json": "^2.6.0",
"tsconfig-vuepress": "^4.5.0",
"typescript": "^5.3.3"
},
"packageManager": "pnpm@8.13.1",
"packageManager": "pnpm@8.14.3",
"engines": {
"node": ">=18.16.0"
}
Expand Down
Loading

0 comments on commit 63730b4

Please sign in to comment.