We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1151559 commit 9f69378Copy full SHA for 9f69378
src/main.ts
@@ -309,13 +309,7 @@ module.exports = function (argv: string[]): void {
309
.description('Generates the extension manifest from the provided VSIX package.')
310
.requiredOption('-i, --packagePath <path>', 'Path to the VSIX package')
311
.option('-o, --out <path>', 'Output the extension manifest to <path> location (defaults to <packagename>.manifest)')
312
- .action((
313
- packagePath,
314
- out
315
- ) =>
316
- main(
317
- generateManifest(packagePath, out)
318
- ));
+ .action(({ packagePath, out }) => main(generateManifest(packagePath, out)));
319
320
program
321
.command('ls-publishers')
0 commit comments