You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
varlater=require('later');
to this:
varlater=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)
The text was updated successfully, but these errors were encountered:
hughmp
changed the title
create-react-app & Webpack error with later.js
create-react-app & webpack error with later.js
Aug 10, 2017
There's now a maintained fork of the later library, which the original version even refers you to on npm. See the deprecation message here: https://www.npmjs.com/package/later
Maybe someone could fork this to use the forked later library?
When using create-react-app I get the following error at compile time:
This can be temporarily resolved by changing line 26 from this:
to this:
This doesn't actually work with the latest version of webpack, I had to fork
prettycron
andlater
similar to @RickCarlino here bunkat/later#155 (comment)The text was updated successfully, but these errors were encountered: