I’m working on a project managed on GitHub, and one of its dependencies is stored in a private Bitbucket repository that we have access to. To improve version control, I recently created a git tag for a specific version because the build server at the client’s site didn’t pick up the latest version of the dependency. The package.json file now includes the following entry:
"ember-custom-adapter": "git+ssh://[email protected]:path-to-project.git#v0.0.7",
I’ve confirmed that the git tag v0.0.7 exists in the Bitbucket repository. However, when running builds in Travis CI, I encounter an error indicating missing npm packages. In the build output, npm install is initiated, but there are indications that it couldn’t locate the package which confuses me. This configuration worked without tags previously, but now it resorts to an older version of the dependency. Does anyone have insights into what might be happening?