souvik

Results 75 comments of souvik

```ts .catch((err) => { const oclifHandler = require('@oclif/core/handle'); console.error(err.message); return oclifHandler(err.message); }); ``` This code is redundant, the control is not reaching here since `this.error` is a logging command as...

Yeah Everything is working, we are getting the error code as expected just need the conflicts resolved. ![Screenshot 2022-09-22 at 6 37 29 PM](https://user-images.githubusercontent.com/41781438/191755280-8de4b60f-1c99-4c94-b689-b24e676c3d42.png)

@aykonsvk currently CLI shows this warning in production but the development environment works fine you can check this https://github.com/asyncapi/cli/issues/192 I already have this updated oclif to its latest version which...

@aykonsvk can you update to the latest version and check once, your issue should be fixed now, but if it isn't just let me know.

> from features perspective, the only important ones could be generate and convert so 1.0 of CLI would automatically deprecate `Generator` and `Converter` CLIs Totally agree! > in other words,...

> I just want to ask in this command the first file passed to command should be base file or not. `bundler` takes an array of files but it does...

I mean there is no way to output a file to a certain directory right now in `bundler`. It just gives you string and JSON object. So bundler does not...

> we just need to remember that this --output flag just like --watcher should be generic, reusable, so other commands can easily use it too, like diff for example Oh...

Would be better if you open a WIP PR then I can take a look at your changes, but this is happening most probably because you are using `document.json()` that's...

@smoya would love to help, I have been reading parser for some time now and I wanted to get started with the project but didn't know where to start, I...