Closed
Description
To get the async example running I did some hacks...
I had to upgrade babel dependencies to
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
Then I had to temporarily remove import 'babel-core/polyfill'; from index.js, because I was getting
ERROR in ./index.js
Module not found: Error: Cannot resolve module 'babel-core/polyfill' in /home/tersiusk/WebstormProjects/samples/ng-redux/examples/async
@ ./index.js 3:0-30
// import 'babel-core/polyfill';
import angular from 'angular';
import ngRedux from 'ng-redux';
...