I have been trying to deploy a project and the backend package.json has dependencies I obviously need to run, but I cannot get render’s build apparatus to stop getting stuck in a loop. I realize this may be an issue of understanding regarding the install script and how it works, but the documentation is not exactly clear on the subject.
Commands I have run:
npm install && npm --prefix client install client
npm --prefix . install && npm --prefix client install client
npm --prefix . install . && npm --prefix client install client
npm install . && npm --prefix client install client
None seem to work and none ever even get to the part of the statement after the &&.
Relative file structure is like so:
[root] -
----package.json (where this problematic install script is)
----[client] -
--------package.json
Any help would be greatly appreciated.