Changed --out flag description in package command

I was quite confused by the previous description ('Location of the package'). I think it's worth being more explicit about what is being created.
This commit is contained in:
Amadeusz Annissimo 2018-08-19 11:56:59 -04:00 committed by GitHub
parent 9035c7d205
commit 5a5a674ffd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ module.exports = function (argv: string[]): void {
program
.command('package')
.description('Packages an extension')
.option('-o, --out [path]', 'Location of the package')
.option('-o, --out [path]', 'Output .vsix extension file to [path] location')
.option('--baseContentUrl [url]', 'Prepend all relative links in README.md with this url.')
.option('--baseImagesUrl [url]', 'Prepend all relative image links in README.md with this url.')
.option('--yarn', 'Use yarn instead of npm')