diff --git a/src/commands/help.ts b/src/commands/help.ts deleted file mode 100644 index 69ce97e2..00000000 --- a/src/commands/help.ts +++ /dev/null @@ -1,8 +0,0 @@ -import commander from 'commander'; - -const {outputHelp} = commander; - -/** - * Outputs the help command. - */ -export default async () => outputHelp(); diff --git a/src/index.ts b/src/index.ts index 7a599c13..4279b122 100755 --- a/src/index.ts +++ b/src/index.ts @@ -36,7 +36,6 @@ import create from './commands/create.js'; import defaultCmd from './commands/default.js'; import deploy from './commands/deploy.js'; import deployments from './commands/deployments.js'; -import help from './commands/help.js'; import list from './commands/list.js'; import login from './commands/login.js'; import logout from './commands/logout.js'; @@ -359,13 +358,6 @@ commander .option('--open', 'Open the API Console in the browser') .action(apis); -/** - * Displays the help function. - * @name help - * @example help - */ -commander.command('help').description('Display help').action(help); - /** * Update .clasp.json settings file. * If `newValue` is omitted, it returns the current setting value