Kevin O
Kevin O
@jhabdas I'm trying out buildbuddy. How did you deal with missing config.js file?
Thanks @jhabdas -- exactly what I was looking for. I'll give it a shot in the next day or so.
Yeah, I've been hitting this one for months. I'm only encountering this issue in files that contain multiple global functions (e.g. redux action files). I haven't encountered this in react...
This issue was also being tracked in react-native and someone posted solution there... Replace function someFn() {} with const someFn = () => {} There can't be ANY functions in...