You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'-f, --file <spec-file-path> Path of the AsyncAPI file',
33
+
'-c, --context <saved-context-name> Context to use',
34
+
'-w, --watch Watch mode'
35
+
]
36
+
},
37
+
context: {
38
+
usage: 'asyncapi context [command] [options]',
39
+
shortDescription: 'Manage context',
40
+
longDescription: 'Context is what makes it easier for you to work with multiple AsyncAPI files.\nYou can add multiple different files to a context.\nThis way you do not have to pass --file flag with path to the file every time but just --context flag with reference name.\nYou can also set a default context, so neither --file nor --context flags are needed',
41
+
flags: [this.helpFlag],
42
+
subCommands: [
43
+
'list list all saved contexts',
44
+
'current see current context',
45
+
'use <context-name> set given context as default/current',
0 commit comments