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
Following errors are reported during composing images by docker-compose
> [email protected] build /app/kinto/plugins/admin
> react-scripts build
Creating an optimized production build...
Failed to compile.
./node_modules/kinto-admin/lib/index.js
Cannot find module: 'react-redux'. Make sure this package is installed.
You can install this package by running: npm install react-redux.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2019-10-30T13_29_25_294Z-debug.log
Usage:
pip3 install [options] <requirement specifier> [package-index-options] ...
pip3 install [options] -r <requirements file> [package-index-options] ...
pip3 install [options] [-e] <vcs project url> ...
pip3 install [options] [-e] <local project path> ...
pip3 install [options] <archive url/path> ...
It seems this issue connects to package.json in kinto-admin package and usage of the package in the application!
The text was updated successfully, but these errors were encountered:
There are two different packages including react-redux and redux. Former depends on latter while the latter has been declared in package.json and the application looking for a proper instance of the react-redux that's been missed. You can explore node_module and find out why this error comes up!
I think it should have been saved as dev dependency by npm install --save-dev react-redux.
Following errors are reported during composing images by
docker-compose
It seems this issue connects to
package.json
inkinto-admin
package and usage of the package in the application!The text was updated successfully, but these errors were encountered: