@vscode/vsce 2.27.1-2 → 2.27.1-3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/main.js +1 -1
- package/package.json +1 -1
package/out/main.js
CHANGED
|
@@ -220,7 +220,7 @@ module.exports = function (argv) {
|
|
|
220
220
|
.description('Generates the extension manifest from the provided VSIX package.')
|
|
221
221
|
.requiredOption('-i, --packagePath <path>', 'Path to the VSIX package')
|
|
222
222
|
.option('-o, --out <path>', 'Output the extension manifest to <path> location (defaults to <packagename>.manifest)')
|
|
223
|
-
.action((packagePath, out) => main((0, package_1.generateManifest)(packagePath, out)));
|
|
223
|
+
.action(({ packagePath, out }) => main((0, package_1.generateManifest)(packagePath, out)));
|
|
224
224
|
commander_1.default
|
|
225
225
|
.command('ls-publishers')
|
|
226
226
|
.description('Lists all known publishers')
|