When I try add the jeri package via npm to an existing react project and try to run it, I get the following error:
./node_modules/jeri/build_npm/utils/image-loading.js
Module not found: Can't resolve 'worker-loader' in '/Users/anf/code/jeri-cra/node_modules/jeri/build_npm/utils'
It looks like this is due to worker-loader being a devDependency (which seems correct given that it's a webpack plugin?) but being used directly in non-dev code.
When I try add the
jeripackage via npm to an existing react project and try to run it, I get the following error:It looks like this is due to
worker-loaderbeing adevDependency(which seems correct given that it's a webpack plugin?) but being used directly in non-dev code.