diff --git a/packages/vuepress/lib/util.js b/packages/vuepress/lib/util.js index 6c14e277ea..f35bb3694e 100644 --- a/packages/vuepress/lib/util.js +++ b/packages/vuepress/lib/util.js @@ -46,7 +46,7 @@ function wrapCommand (fn) { */ function isKnownCommand (argv) { - return ['dev', 'build', 'eject'].includes(argv[0]) + return ['dev', 'build', 'eject', 'info'].includes(argv[0]) } module.exports = {