aria

Results 49 comments of aria

@alessbell interesting! Thanks for sharing your solution :smile: are there any known issues with going that route? I haven't done much work on this repo in a bit because I've...

Thanks for the link to swyx blog! I see that he's using Netlify, so going forward that might be the optimal route. The biggest reason I didn't go outside Jimp...

yeah an override system is a must, one of the biggest things CRA is lacking. Almost every app I've created using CRA has forced me to eject at some point,...

This PR also adds `eslint` and `babel` plugins for flow type. The babel plugin automatically converts component's types into prop types. So this ```jsx class App extends Component { props:...

One more thing: it also adds a custom vscode workspace settings file. This is so that vscode can properly display javascript files that have flow annotations in them. Without these...

I added a script in the `tools` directory called `startElectron.js`. What this does is detect the presence of the dev server before starting the electron app. This greatly reduces the...

Commenting to bump this thread and show my interest. Working on a large codebase with lots of custom hooks means that this would allow us to more reliably use the...

Alright, that was going to be my next question :smile_cat: I'm in the process of building out a pretty complex cli app and would personally love to be able to...

Yeah, I think using a yaml file would be the saner option of the two. Something like `.oclif.yml` at the root of the project, a la `.travis.yml`? Are yaml's multiline...

Oh for sure. I'll try out using a template from the `package.json` config. Was adding a yaml config something that was already on your roadmap?