I have a project that has Python requirements in the root plus a VuePress documentation site with package.json. Netlify deployment tries (unnecessarily) to install the Python requirements (and fails, so the whole deployment fails) but I’d only want it to install and build VuePress. Is there any other way to do this other than moving the package.json into a different directory?
In other words, I’d like to tell Netlify build to only install JS dependencies and forget about the rest of the repo.