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:
parent
9035c7d205
commit
5a5a674ffd
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ module.exports = function (argv: string[]): void {
|
||||||
program
|
program
|
||||||
.command('package')
|
.command('package')
|
||||||
.description('Packages an extension')
|
.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('--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('--baseImagesUrl [url]', 'Prepend all relative image links in README.md with this url.')
|
||||||
.option('--yarn', 'Use yarn instead of npm')
|
.option('--yarn', 'Use yarn instead of npm')
|
||||||
|
|
Loading…
Add table
Reference in a new issue