From 9f69378dc0ea4f29a9e48c83a6bc246e7ec43302 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Moreno?= Date: Fri, 14 Jun 2024 11:00:39 +0200 Subject: [PATCH] fix generate-manifest (#1002) --- src/main.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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')