Skip to content

Commit

Permalink
chore: use the same version of package across the workspace (skip v1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Simek committed Feb 22, 2021
1 parent 67ff0a3 commit 39b5459
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions packages/docusaurus-init/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"license": "MIT",
"dependencies": {
"chalk": "^4.1.0",
"commander": "^4.0.1",
"commander": "^5.1.0",
"fs-extra": "^9.1.0",
"lodash.kebabcase": "^4.1.1",
"prompts": "^2.4.0",
"semver": "^6.3.0",
"semver": "^7.3.4",
"shelljs": "^0.8.4"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-migrate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"rehype-parse": "^7.0.1",
"remark-parse": "^8.0.2",
"remark-stringify": "^8.1.0",
"semver": "^7.3.2",
"semver": "^7.3.4",
"unified": "^9.2.0",
"unist-util-visit": "^2.0.2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-client-redirects/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@docusaurus/utils-validation": "2.0.0-alpha.70",
"chalk": "^3.0.0",
"eta": "^1.11.0",
"fs-extra": "^9.0.1",
"fs-extra": "^9.1.0",
"globby": "^11.0.2",
"joi": "^17.4.0",
"lodash": "^4.17.20"
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-content-docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@docusaurus/module-type-aliases": "2.0.0-alpha.70",
"@types/picomatch": "^2.2.1",
"commander": "^5.0.0",
"commander": "^5.1.0",
"picomatch": "^2.1.1"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-plugin-ideal-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
},
"license": "MIT",
"devDependencies": {
"fs-extra": "^9.0.1"
"fs-extra": "^9.1.0"
},
"dependencies": {
"@docusaurus/core": "2.0.0-alpha.70",
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"license": "MIT",
"dependencies": {
"@types/webpack": "^4.41.0",
"commander": "^4.0.1",
"commander": "^5.1.0",
"querystring": "0.2.0",
"webpack-merge": "^4.2.2"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/docusaurus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"clean-css": "^5.0.1",
"commander": "^4.0.1",
"commander": "^5.1.0",
"copy-webpack-plugin": "^6.4.1",
"core-js": "^2.6.5",
"css-loader": "^5.0.2",
Expand Down Expand Up @@ -103,7 +103,7 @@
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"resolve-pathname": "^3.0.0",
"semver": "^6.3.0",
"semver": "^7.3.4",
"serve-handler": "^6.1.3",
"shelljs": "^0.8.4",
"std-env": "^2.2.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/docusaurus/src/commands/external.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
* LICENSE file in the root directory of this source tree.
*/

import {CommanderStatic} from 'commander';
import {Command} from 'commander';
import {loadContext, loadPluginConfigs} from '../server';
import initPlugins from '../server/plugins/init';

export default async function externalCommand(
cli: CommanderStatic,
cli: Command,
siteDir: string,
): Promise<void> {
const context = await loadContext(siteDir);
Expand Down

0 comments on commit 39b5459

Please sign in to comment.