diff --git a/src/main.ts b/src/main.ts index 5f0c0d91..34d1969f 100644 --- a/src/main.ts +++ b/src/main.ts @@ -309,13 +309,7 @@ module.exports = function (argv: string[]): void { .description('Generates the extension manifest from the provided VSIX package.') .requiredOption('-i, --packagePath ', 'Path to the VSIX package') .option('-o, --out ', 'Output the extension manifest to location (defaults to .manifest)') - .action(( - packagePath, - out - ) => - main( - generateManifest(packagePath, out) - )); + .action(({ packagePath, out }) => main(generateManifest(packagePath, out))); program .command('ls-publishers')