From dfb3869a4874f70cbcfdbfc3ff31af401d6ffac7 Mon Sep 17 00:00:00 2001 From: ludanxer Date: Thu, 23 Jan 2020 21:40:14 +0800 Subject: [PATCH] fix: update known command list --- packages/vuepress/lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = {