You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment Aik uses react-hot-loader@1.3.1. I thought about upgrading to v3. Which is currently in beta. But if I do so, everyone will have to configure hot loader like this (example from RHL 3 docs):
importReactfrom'react'importReactDOMfrom'react-dom'import{AppContainer}from'react-hot-loader'importAppfrom'./containers/App'ReactDOM.render(<AppContainer><App/></AppContainer>,document.getElementById('root'));// Hot Module Replacement APIif(module.hot){module.hot.accept('./containers/App',()=>{constNextApp=require('./containers/App').default;ReactDOM.render(<AppContainer><NextApp/></AppContainer>,document.getElementById('root'));});}
As I mentioned here 203ad3a. Sometime react-hot-loader causes some errors in Aik.
For release 0.13 I had to fix few of them and it led to support only react 15.4+ for
-r
option.Some related issues:
At the moment Aik uses react-hot-loader@1.3.1. I thought about upgrading to v3. Which is currently in beta. But if I do so, everyone will have to configure hot loader like this (example from RHL 3 docs):
More on this here: https://github.com/gaearon/react-hot-loader/tree/next-docs/docs#migration-to-30
Even though it's great tool if it continues to deliver issues into Aik I'll have to remove it.
The text was updated successfully, but these errors were encountered: