Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 21d302d

Browse files
Update build.ts (#1048)
Co-authored-by: Emilio Munoz <[email protected]>
1 parent c435071 commit 21d302d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/luis/src/commands/luis/build.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ export default class LuisBuild extends Command {
2525

2626
static flags: flags.Input<any> = {
2727
help: flags.help({char: 'h', description: 'luis:build command help'}),
28-
in: flags.string({char: 'i', description: 'Lu file or folder'}),
29-
authoringKey: flags.string({description: 'LUIS authoring key'}),
30-
botName: flags.string({description: 'Bot name'}),
28+
in: flags.string({char: 'i', description: '(required) Lu file or folder'}),
29+
authoringKey: flags.string({description: '(required) LUIS authoring key. Refered to as subscriptionKey in other cli commands.'}),
30+
botName: flags.string({description: '(required) Bot name'}),
3131
region: flags.string({description: 'LUIS authoring region [westus|westeurope|australiaeast]', default: 'westus'}),
3232
out: flags.string({char: 'o', description: 'Output folder name to write out .dialog and settings files. If not specified, application setting will be output to console'}),
3333
defaultCulture: flags.string({description: 'Culture code for the content. Infer from .lu if available. Defaults to en-us'}),
@@ -38,7 +38,7 @@ export default class LuisBuild extends Command {
3838
luConfig: flags.string({description: 'Path to config for lu build which can contain switches for arguments'}),
3939
deleteOldVersion: flags.boolean({description: 'Deletes old version of LUIS application after building new one.'}),
4040
log: flags.boolean({description: 'Writes out log messages to console', default: false}),
41-
endpoint: flags.string({description: 'Luis authoring endpoint for publishing'}),
41+
endpoint: flags.string({description: '(required) Luis authoring endpoint for publishing'}),
4242
schema: flags.string({description: 'Defines $schema for generated .dialog files'}),
4343
isStaging: flags.boolean({description: 'Publishes luis application to staging slot if set. Default to production slot', default: false}),
4444
directVersionPublish: flags.boolean({description: 'Available only in direct version query. Do not publish to staging or production', default: false})

0 commit comments

Comments
 (0)