Plugin for ember-cli-hot-loader that hot reloads your reducers
ember install ember-cli-hot-loader
ember install ember-redux-hot-loader
Install the redux dev tools extension
An example application that hot reloads styles/components/reducers
https://github.com/toranb/ember-hot-reload-demo
Alter the supported types configuration of ember-cli-hot-loader to include reducers
//my-app/config/environment.js
if (environment === 'development') {
ENV['ember-cli-hot-loader'] = {
supportedTypes: ['components', 'reducers']
}
}