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 Nov 14, 2024
1 parent b6e9b28 commit 5d67a4c
Show file tree
Hide file tree
Showing 12 changed files with 1,045 additions and 994 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@vuepress/theme-default": "workspace:*",
"katex": "0.16.11",
"mathjax-full": "3.2.2",
"sass-embedded": "1.80.6",
"sass-embedded": "1.80.7",
"sass-loader": "^16.0.3",
"vue": "^3.5.12",
"vuepress": "2.0.0-rc.18"
Expand Down
2 changes: 1 addition & 1 deletion e2e/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@vuepress/plugin-theme-data": "workspace:*",
"@vuepress/plugin-watermark": "workspace:*",
"@vuepress/theme-default": "workspace:*",
"sass-embedded": "1.80.6",
"sass-embedded": "1.80.7",
"sass-loader": "^16.0.3",
"vue": "^3.5.12",
"vuepress": "2.0.0-rc.18"
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.9.0",
"@types/webpack-env": "^1.18.5",
"@vitest/coverage-istanbul": "^2.1.4",
"@vitest/coverage-istanbul": "^2.1.5",
"conventional-changelog-cli": "^5.0.0",
"cpx2": "^8.0.0",
"cross-env": "^7.0.3",
Expand All @@ -52,23 +52,23 @@
"prettier": "^3.3.3",
"prettier-config-vuepress": "^5.0.0",
"rimraf": "^6.0.1",
"rollup": "^4.24.4",
"rollup": "^4.26.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-resolve-shebang": "^1.0.1",
"sass-embedded": "^1.80.6",
"sass-embedded": "^1.80.7",
"sort-package-json": "^2.10.1",
"stylelint": "^16.10.0",
"stylelint-config-hope": "^7.0.4",
"stylelint-config-html": "^1.1.0",
"tsconfig-vuepress": "^5.2.1",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vite": "~5.4.10",
"vitest": "^2.1.4",
"vite": "~5.4.11",
"vitest": "^2.1.5",
"vuepress": "2.0.0-rc.18"
},
"packageManager": "pnpm@9.12.3",
"packageManager": "pnpm@9.13.0",
"engines": {
"node": ">=18.19.0"
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/development/plugin-theme-data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"copy": "cpx \"src/**/*.d.ts\" lib"
},
"dependencies": {
"@vue/devtools-api": "^7.6.3",
"@vue/devtools-api": "^7.6.4",
"vue": "^3.5.12"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/pwa/plugin-pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@
"access": "public"
},
"devDependencies": {
"rollup": "^4.24.4"
"rollup": "^4.26.0"
}
}
6 changes: 3 additions & 3 deletions plugins/search/plugin-docsearch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"copy": "cpx \"src/**/*.css\" lib"
},
"dependencies": {
"@docsearch/css": "^3.7.0",
"@docsearch/js": "^3.7.0",
"@docsearch/css": "^3.8.0",
"@docsearch/js": "^3.8.0",
"@vuepress/helper": "workspace:*",
"@vueuse/core": "^11.2.0",
"ts-debounce": "^4.0.0",
Expand All @@ -51,7 +51,7 @@
"vuepress": "2.0.0-rc.18"
},
"devDependencies": {
"algoliasearch": "5.12.0"
"algoliasearch": "5.13.0"
},
"publishConfig": {
"access": "public"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,14 @@ export const useDocSearchShim = (): Partial<DocSearchProps> => {
},

// add search debounce
// @ts-expect-error: Return type of search is a type parameter
transformSearchClient: (searchClient) => {
const searchWithDebounce = debounce(searchClient.search, 500)

return {
...searchClient,
search: async (...args) => searchWithDebounce(...args),
search: async (searchMethodParams) =>
searchWithDebounce(searchMethodParams),
}
},
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/tools/plugin-cache/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"access": "public"
},
"dependencies": {
"ci-info": "^4.0.0",
"ci-info": "^4.1.0",
"lru-cache": "^10.4.3"
}
}
2,001 changes: 1,025 additions & 976 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tools/create-vuepress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"@inquirer/prompts": "^7.0.1",
"@inquirer/prompts": "^7.1.0",
"cac": "^6.7.14",
"execa": "^9.5.1"
},
Expand Down
2 changes: 1 addition & 1 deletion tools/helper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@vuepress/bundler-webpack": "2.0.0-rc.18",
"@vuepress/plugin-git": "workspace:*",
"domhandler": "5.0.3",
"vite": "~5.4.10"
"vite": "~5.4.11"
},
"peerDependencies": {
"vuepress": "2.0.0-rc.18"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "test",
"packageManager": "pnpm@9.12.3"
"packageManager": "pnpm@9.13.0"
}

0 comments on commit 5d67a4c

Please sign in to comment.