From 8a44cfd9a84325d0fadba7822eabd8620f68d99b Mon Sep 17 00:00:00 2001 From: Erick Zhao Date: Tue, 5 Sep 2023 15:38:46 -0700 Subject: [PATCH] fix(cli): update `--help` command output (#3335) --- packages/api/cli/src/electron-forge.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/api/cli/src/electron-forge.ts b/packages/api/cli/src/electron-forge.ts index b4730fb8c5..1f7b6b031e 100755 --- a/packages/api/cli/src/electron-forge.ts +++ b/packages/api/cli/src/electron-forge.ts @@ -34,12 +34,10 @@ program .option('--verbose', 'Enables verbose mode') .command('init', 'Initialize a new Electron application') .command('import', 'Attempts to navigate you through the process of importing an existing project to "electron-forge"') - .command('lint', 'Lints the current Electron application') + .command('start', 'Start the current Electron application in development mode') .command('package', 'Package the current Electron application') .command('make', 'Generate distributables for the current Electron application') - .command('start', 'Start the current Electron application') - .command('publish', 'Publish the current Electron application to GitHub') - .command('install', 'Install an Electron application from GitHub') + .command('publish', 'Publish the current Electron application') .on('command:*', (commands) => { if (!program._execs.has(commands[0])) { console.error();