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
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']
}
}
An example application that hot reloads styles/components/reducers