We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013f867 commit 419ecdaCopy full SHA for 419ecda
lib/common/services/commands-service.ts
@@ -142,9 +142,9 @@ export class CommandsService implements ICommandsService {
142
" "
143
) + " "
144
: "";
145
- const commandHelp = `tns ${command}--help`;
+ const commandHelp = `ns ${command}--help`;
146
this.$logger.printMarkdown(
147
- `\`Run '${commandHelp}' for more information.\``
+ `__Run \`${commandHelp}\` for more information.__`
148
);
149
return;
150
}
lib/options.ts
@@ -354,7 +354,7 @@ export class Options {
354
opts[this.getDashedOptionName(key)] = value;
355
});
356
357
- const parsed = yargs(process.argv.slice(2));
+ const parsed = yargs(process.argv.slice(2)).help(false);
358
this.initialArgv = parsed.argv;
359
this.argv = parsed.options(<any>opts).argv;
360
0 commit comments