Я столкнулся с проблемой развертывания Heroku. Вчера я смог развернуть без проблем - сегодня утром я построил новый кластер на MongoDB и перенес изменение в git с новой строкой соединения. Никаких других изменений не было сделано.
После нажатия на git я запустил git push heroku master
и столкнулся со следующей ошибкой:
. . .
remote: added 1812 packages from 857 contributors and audited 932744 packages in 66.192s
remote:
remote: 65 packages are looking for funding
remote: run `npm fund` for details
remote:
remote: found 0 vulnerabilities
remote:
remote:
remote: > client@0.1.0 build /tmp/build_3fd8925946ec2800b115594ca20fb426/client
remote: > react-scripts build
remote:
remote: Creating an optimized production build...
remote: Failed to compile.
remote:
remote: ./node_modules/simple-react-lightbox/dist/index.es.js
remote: Cannot find module: 'fast-deep-equal/react'. Make sure this package is installed.
remote:
remote: You can install this package by running: yarn add fast-deep-equal/react.
. . .
Естественно, первое, что я сделал, было попробуйте запустить yarn add fast-deep-equal/react
в соответствии с рекомендациями, что привело к следующей ошибке:
error Command failed.
Exit code: 128
Command: git
Arguments: ls-remote --tags --heads ssh://git@github.com/fast-deep-equal/react.git
Directory: /Users/me/my-app
Output:
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Я отлаживал уже несколько часов и не могу найти решение.
Что здесь может происходить?