5.0.0-alpha.7
(I couldn't get it working on codesandbox)
On our build jest is complaining it can't find module selectors.
โ Test suite failed to run
Cannot find module './selectors' from 'index.js'
at Resolver.resolveModule (node_modules/jest-resolve/build/index.js:179:17)
at Object.<anonymous> (node_modules/react-router-redux/index.js:6:18)
Based on grepping i find:
node_modules/react-router-redux/index.js:var _selectors = require('./selectors');
but only the file exists:
node_modules/react-router-redux/es/selectors.js
I'm thinking https://github.com/ReactTraining/react-router/blob/master/packages/react-router-redux/package.json#L10 needs the files: {} block to include selectors.
Dupe of #5636
Most helpful comment
I'm thinking https://github.com/ReactTraining/react-router/blob/master/packages/react-router-redux/package.json#L10 needs the files: {} block to include selectors.