0.1.1 • Published 7 years ago

ember-redux-hot-loader v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

ember-redux-hot-loader

Travis NPM Ember

Plugin for ember-cli-hot-loader that hot reloads your reducers

Installation

ember install ember-cli-hot-loader
ember install ember-redux-hot-loader

Install the redux dev tools extension

Example application

An example application that hot reloads styles/components/reducers

https://github.com/toranb/ember-hot-reload-demo

Configuration

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']
  }
}