From ea9830e025a06970409593bbd9a55c60a8d6b4ca Mon Sep 17 00:00:00 2001 From: Michael Shanks Date: Thu, 27 Feb 2020 09:32:58 +0000 Subject: [PATCH] cli - init command not defaulting config correctly --- packages/cli/src/commands/init/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/commands/init/index.js b/packages/cli/src/commands/init/index.js index 0de3e58928..e3b35d6530 100644 --- a/packages/cli/src/commands/init/index.js +++ b/packages/cli/src/commands/init/index.js @@ -15,7 +15,7 @@ module.exports = { type: "string", describe: "config template file to use - optional, defaults to config.js", alias: "c", - default: "config.dev.js", + default: "dev", choices: ["dev", "contributors"], }) yargs.positional("username", { @@ -26,7 +26,7 @@ module.exports = { }) yargs.positional("password", { type: "string", - describe: "passord for admin interface", + describe: "password for admin interface", alias: "p", default: "", })