Skip to content

Commit 00fec25

Browse files
committed
build: bump dependencies
1 parent 1e48eb4 commit 00fec25

File tree

19 files changed

+429
-686
lines changed

19 files changed

+429
-686
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"devDependencies": {
3434
"@commitlint/cli": "^11.0.0",
3535
"@commitlint/config-conventional": "^11.0.0",
36-
"@types/jest": "^26.0.19",
36+
"@types/jest": "^26.0.20",
3737
"anywhere": "^1.5.0",
3838
"chokidar": "^3.5.1",
39-
"cpx": "^1.5.0",
39+
"cpx2": "^3.0.0",
4040
"cross-env": "^7.0.3",
41-
"eslint": "^7.15.0",
41+
"eslint": "^7.18.0",
4242
"eslint-config-vuepress": "^3.1.0",
4343
"eslint-config-vuepress-typescript": "^2.1.2",
4444
"husky": "^4.3.6",
@@ -49,7 +49,7 @@
4949
"prettier": "^2.2.1",
5050
"prettier-config-vuepress": "^1.1.1",
5151
"rimraf": "^3.0.2",
52-
"sort-package-json": "^1.48.0",
52+
"sort-package-json": "^1.48.1",
5353
"ts-jest": "^26.4.4",
5454
"typescript": "^4.1.3"
5555
}

packages/@vuepress/bundler-webpack/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,27 +29,27 @@
2929
"dependencies": {
3030
"@types/express": "^4.17.10",
3131
"@types/webpack-env": "^1.16.0",
32-
"@vue/compiler-sfc": "^3.0.4",
33-
"@vue/server-renderer": "^3.0.4",
32+
"@vue/compiler-sfc": "^3.0.5",
33+
"@vue/server-renderer": "^3.0.5",
3434
"@vuepress/client": "2.0.0-alpha.18",
3535
"@vuepress/core": "2.0.0-alpha.18",
3636
"@vuepress/utils": "2.0.0-alpha.18",
3737
"autoprefixer": "^10.1.0",
3838
"copy-webpack-plugin": "^7.0.0",
3939
"css-loader": "^5.0.1",
40-
"esbuild-loader": "^2.7.0",
40+
"esbuild-loader": "^2.8.0",
4141
"express": "^4.17.1",
4242
"file-loader": "^6.2.0",
43-
"html-webpack-plugin": "5.0.0-beta.1",
44-
"mini-css-extract-plugin": "^1.3.3",
43+
"html-webpack-plugin": "5.0.0-beta.6",
44+
"mini-css-extract-plugin": "^1.3.4",
4545
"portfinder": "^1.0.28",
4646
"postcss": "^8.1.4",
4747
"postcss-csso": "^5.0.0",
4848
"postcss-loader": "^4.1.0",
4949
"style-loader": "^2.0.0",
5050
"url-loader": "^4.1.1",
5151
"vue-loader": "^16.1.2",
52-
"webpack": "^5.11.1",
52+
"webpack": "^5.17.0",
5353
"webpack-chain": "^6.5.1",
5454
"webpack-dev-server": "4.0.0-beta.0",
5555
"webpack-merge": "^5.7.3"

packages/@vuepress/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"cac": "^6.7.1",
3636
"chokidar": "^3.5.1",
3737
"envinfo": "^7.7.3",
38-
"esbuild": "^0.8.33"
38+
"esbuild": "^0.8.34"
3939
},
4040
"publishConfig": {
4141
"access": "public"

packages/@vuepress/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
},
3030
"dependencies": {
3131
"@vuepress/shared": "2.0.0-alpha.18",
32-
"vue": "^3.0.4",
33-
"vue-router": "^4.0.2"
32+
"vue": "^3.0.5",
33+
"vue-router": "^4.0.3"
3434
},
3535
"publishConfig": {
3636
"access": "public"

packages/@vuepress/markdown/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
"clean": "rimraf lib *.tsbuildinfo"
2727
},
2828
"dependencies": {
29-
"@types/markdown-it": "^12.0.0",
29+
"@types/markdown-it": "^12.0.1",
3030
"@vuepress/shared": "2.0.0-alpha.18",
3131
"@vuepress/utils": "2.0.0-alpha.18",
32-
"markdown-it": "^12.0.3",
33-
"markdown-it-anchor": "^6.0.1",
32+
"markdown-it": "^12.0.4",
33+
"markdown-it-anchor": "^7.0.0",
3434
"markdown-it-emoji": "^2.0.0",
3535
"prismjs": "^1.23.0"
3636
},

packages/@vuepress/markdown/src/plugins/anchorPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ export interface AnchorPluginOptions {
7575
callback?: (token: Token, opts: { slug: string; title: string }) => void
7676
}
7777

78-
export const anchorPlugin: PluginWithOptions<AnchorPluginOptions> = rawAnchorPlugin
78+
export const anchorPlugin: PluginWithOptions<AnchorPluginOptions> = rawAnchorPlugin as PluginWithOptions<AnchorPluginOptions>

packages/@vuepress/plugin-active-header-links/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
"@vuepress/core": "2.0.0-alpha.18",
3434
"@vuepress/utils": "2.0.0-alpha.18",
3535
"lodash.debounce": "^4.0.8",
36-
"vue": "^3.0.4",
37-
"vue-router": "^4.0.2"
36+
"vue": "^3.0.5",
37+
"vue-router": "^4.0.3"
3838
},
3939
"devDependencies": {
4040
"@types/lodash.debounce": "^4.0.6"

packages/@vuepress/plugin-back-to-top/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"@vuepress/core": "2.0.0-alpha.18",
3333
"@vuepress/utils": "2.0.0-alpha.18",
3434
"lodash.debounce": "^4.0.8",
35-
"vue": "^3.0.4"
35+
"vue": "^3.0.5"
3636
},
3737
"publishConfig": {
3838
"access": "public"

packages/@vuepress/plugin-container/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
"clean": "rimraf lib *.tsbuildinfo"
3030
},
3131
"dependencies": {
32-
"@types/markdown-it": "^12.0.0",
32+
"@types/markdown-it": "^12.0.1",
3333
"@vuepress/core": "2.0.0-alpha.18",
3434
"@vuepress/markdown": "2.0.0-alpha.18",
3535
"@vuepress/shared": "2.0.0-alpha.18",
3636
"@vuepress/utils": "2.0.0-alpha.18",
37-
"markdown-it": "^12.0.3",
37+
"markdown-it": "^12.0.4",
3838
"markdown-it-container": "^3.0.0"
3939
},
4040
"publishConfig": {

packages/@vuepress/plugin-debug/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
"@vuepress/client": "2.0.0-alpha.18",
3333
"@vuepress/core": "2.0.0-alpha.18",
3434
"@vuepress/utils": "2.0.0-alpha.18",
35-
"vue": "^3.0.4",
36-
"vue-router": "^4.0.2"
35+
"vue": "^3.0.5",
36+
"vue-router": "^4.0.3"
3737
},
3838
"publishConfig": {
3939
"access": "public"

0 commit comments

Comments
 (0)