aymeric bouzy
aymeric bouzy
I've just discovered Lerna : https://github.com/lerna/lerna do you know about it? Do you recommend it?
I didn't know about Yeoman! If I can find good generators, it's going to save me a lot of time. Thanks a lot!
Here is a `Test` component: ```jsx class Test extends Component { constructor(props) { super(props); this.state = { red: false, }; this.toggleColor = this.toggleColor.bind(this); } toggleColor() { if (this._mount) { this.setState({red:...
I have the same problem since upgrading to 0.16.0
I'm using Atom 1.9.8, and atom-react 0.16.0 Since upgrading, I had this weird behaviour with react native code : However I am now unable to reproduce, so maybe I solved...
From my investigation, the culprit is node package `sh-semver` which takes ~800ms on my machine
I had this issue because i had written ``` import {foo} from './foo' ``` where my `foo.js` file read ``` export default foo ``` writing `import foo from './foo'` fixed...
@kerimdzhanov this is my first time contributing: please suggest any improvement I can make to my PR to get it merged 🙏