Releases: gaearon/react-hot-loader
Releases · gaearon/react-hot-loader
v1.1.3
v1.1.2
v1.1.1
v1.1.0
- Skipping
node_modules
entirely wasn't the best idea. Instead, we now specifically skipnode_modules/react/
,node_modules/webpack/
andnode_modules/react-hot-loader/
. However you are still encouraged to addexclude: /node_modules/
to your loader config for best performance. - Now modules that don't export any valid React classes in
module.exports
or any its properties will not be auto-accepted. This prevents hot loader from trying to handle non-React updates and allows changes in plain JS files to propagate to components that can handle them. For example, this allows react-jss mixin to apply hot updates to JSS styles.
v1.0.7
v1.0.6
- Add
require('react-hot-loader/Injection')
to override Hot Loader behavior. Now you can supply your own way of getting root component instances, so Hot Loader can also work in environment wherereact/lib/ReactMount
is not available (for example, when React is used as standalone bundle and not NPM package).