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
feat: add the flag for disabling optimizations (#1447)
* fixes in ignore flag
* add flexibility to the ignore flag
* give option for schema everytime
---------
Co-authored-by: Ashish Padhy <[email protected]>
Co-authored-by: asyncapi-bot <[email protected]>
optimization: Flags.string({char: 'p',default: Object.values(Optimizations),options: Object.values(Optimizations),multiple: true,description: 'select the type of optimizations that you want to apply.'}),
24
+
ignore: Flags.string({char: 'i',default: [],options: Object.values(DisableOptimizations),multiple: true,description: 'list of components to be ignored from the optimization process'}),
20
25
output: Flags.string({char: 'o',default: Outputs.TERMINAL,options: Object.values(Outputs),description: 'select where you want the output.'}),
21
26
'no-tty': Flags.boolean({description: 'do not use an interactive terminal',default: false}),
0 commit comments