When using create-react-app I get the following error at compile time:
Module not found: Can't resolve './later-cov' in 'C:\node_modules\later'
This can be temporarily resolved by changing line 26 from this:
var later = require('later');
to this:
var later = require('later/later.js');
This doesn't actually work with the latest version of webpack, I had to fork prettycron and later similar to @RickCarlino here bunkat/later#155 (comment)