Emil Ahlbäck

Results 19 comments of Emil Ahlbäck

I always return a resolving promise from my data sources. Promises from a data source should not be resolving with a value though, values should be kept in the store....

We keep this state in our stores. ``` js this.state = new Immutable.Map({ entities: new Immutabe.Map(), isLoading: false, hasLoaded: false, hasFailed: false, ``` While it's a bit more to write...

So the :url is actually updated, it's the :path that is not correctly updated according to :version.

@gcanti is it possible for this plugin to also read types from the `[libs]` entry in .flowconfig? We keep a `declarations/apiTypes` file that declares all our API responses, and these...

Thanks for the answer. That looks like it indeed does what I want, though I like tcomb a lot more :)

Would `process.env.NODE_ENV === "production"` suffice? AFAIK that's what React does. If so, maybe I could contribute to this. :)

I only saw one in core. I thought this might include the other repositories as well, which I have not checked. :)

Actually there's not really a warning in core, and it already checks for console & does nothing if it ain't there.

Just ran into this as well. Did you perhaps find a solution @Mickyliu?