Skip to content

Commit

Permalink
build: add missing deps (#160)
Browse files Browse the repository at this point in the history
Co-authored-by: meteorlxy <[email protected]>
  • Loading branch information
xinpingwang and meteorlxy authored May 24, 2021
1 parent 205aafe commit 3a50868
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 4 deletions.
4 changes: 4 additions & 0 deletions packages/@vuepress/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
"vue": "^3.0.11",
"vue-router": "^4.0.6"
},
"devDependencies": {
"@types/webpack-env": "^1.16.0",
"vite": "^2.3.3"
},
"publishConfig": {
"access": "public"
}
Expand Down
1 change: 1 addition & 0 deletions packages/@vuepress/plugin-docsearch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"dependencies": {
"@docsearch/css": "3.0.0-alpha.34",
"@docsearch/js": "3.0.0-alpha.34",
"@docsearch/react": "3.0.0-alpha.34",
"@types/react": "^17.0.0",
"@vuepress/client": "2.0.0-beta.12",
"@vuepress/core": "2.0.0-beta.14",
Expand Down
3 changes: 2 additions & 1 deletion packages/@vuepress/plugin-pwa-popup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"@vuepress/core": "2.0.0-beta.14",
"@vuepress/plugin-pwa": "2.0.0-beta.14",
"@vuepress/shared": "2.0.0-beta.7",
"@vuepress/utils": "2.0.0-beta.11"
"@vuepress/utils": "2.0.0-beta.11",
"vue": "^3.0.11"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 4 additions & 0 deletions packages/@vuepress/plugin-search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
"vue": "^3.0.11",
"vue-router": "^4.0.6"
},
"devDependencies": {
"@types/webpack-env": "^1.16.0",
"vite": "^2.3.3"
},
"publishConfig": {
"access": "public"
}
Expand Down
7 changes: 6 additions & 1 deletion packages/@vuepress/plugin-theme-data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@
"@vuepress/client": "2.0.0-beta.12",
"@vuepress/core": "2.0.0-beta.14",
"@vuepress/shared": "2.0.0-beta.7",
"@vuepress/utils": "2.0.0-beta.11"
"@vuepress/utils": "2.0.0-beta.11",
"vue": "^3.0.11"
},
"devDependencies": {
"@types/webpack-env": "^1.16.0",
"vite": "^2.3.3"
},
"publishConfig": {
"access": "public"
Expand Down
3 changes: 2 additions & 1 deletion packages/@vuepress/plugin-toc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
"@vuepress/client": "2.0.0-beta.12",
"@vuepress/core": "2.0.0-beta.14",
"@vuepress/utils": "2.0.0-beta.11",
"vue": "^3.0.11"
"vue": "^3.0.11",
"vue-router": "^4.0.6"
},
"publishConfig": {
"access": "public"
Expand Down
1 change: 1 addition & 0 deletions packages/@vuepress/theme-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"clean": "rimraf lib *.tsbuildinfo"
},
"dependencies": {
"@vuepress/core": "2.0.0-beta.14",
"@vuepress/theme-default": "2.0.0-beta.14"
},
"publishConfig": {
Expand Down
5 changes: 4 additions & 1 deletion packages/@vuepress/theme-vue/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,8 @@
"outDir": "./lib"
},
"include": ["./src"],
"references": [{ "path": "../theme-default/tsconfig.build.json" }]
"references": [
{ "path": "../core/tsconfig.build.json" },
{ "path": "../theme-default/tsconfig.build.json" }
]
}

0 comments on commit 3a50868

Please sign in to comment.