Skip to content

Commit

Permalink
Merge branch 'main' into sitemap
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Hope authored Jan 29, 2024
2 parents cd911db + 2dc8ea5 commit 4c754f1
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion plugins/plugin-active-header-links/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"ts-debounce": "^4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-container/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"@types/markdown-it": "^13.0.7",
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-git/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"execa": "^8.0.1"
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-google-analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"peerDependencies": {
"vuepress": "2.0.0-rc.2"
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-palette/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"chokidar": "^3.5.3"
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-prismjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"prismjs": "^1.29.0"
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"mitt": "^3.0.1",
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-shiki/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"shikiji": "^0.10.1"
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-toc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"vue": "^3.4.15",
Expand Down
2 changes: 1 addition & 1 deletion tools/create-vuepress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"cac": "^6.7.14",
Expand Down
2 changes: 1 addition & 1 deletion tools/helper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rimraf lib *.tsbuildinfo"
"clean": "rimraf --glob ./lib ./*.tsbuildinfo"
},
"dependencies": {
"@vue/shared": "^3.4.15",
Expand Down
2 changes: 2 additions & 0 deletions tools/helper/src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ export const noopComponent = '@vuepress/helper/noopComponent'
export const noopModule = '@vuepress/helper/noopModule'

export * from './bundler/index.js'
export * from './page/index.js'
export * from './utils/index.js'
export * from '../shared/index.js'

0 comments on commit 4c754f1

Please sign in to comment.