Juliano Farias

Results 34 comments of Juliano Farias

https://github.com/atom/atom/blob/master/src/main-process/parse-command-line.js atom deals with this using `yargs`

I'm not really sure it is needed if we are doing only one thing without any options. But if we want this to a be a more complete solution and...

Correction, right now it'd already be useful by parsing the options and showing the version when we type `reacto -v`.

The only problem with this approach is that I don't really know how to test this in development. Do you have any ideas on how to test this without making...

Ok, I agree that we do not need many options for now. The cli effectively is the own binary. We gotta handle the call from cli by parsing `process.argv` on...

Ok. Did some progress here. Now I'm parsing the command line and getting the desired path to open. The quest is to make it open the project. I believe I...

Ok, I made it. It's opening a directory as project from the command line. Now I need to add a menu command to add reacto bin to PATH. I can't...

I solved this by creating a symlink from the binary to `/usr/local/bin` on mac os. I added menu options to add and to delete this symlink and it only shows...

Ok. I opened up a PR with the code. It appears that there has been some major changes on `main.js` and my code will need some changes. I couldn't find...

Your welcome sir, pleasure is mine. I'm a bit short on time, but I'm doing whatever I can. I'll find a way to deal with it and I'll refactor the...