I have created a bitbucket repository, and now I want to install it as a dependency in my node js project. I have also created a password app, and installed the package like so:
npm i --save git+https://MyUser:[email protected]/MyCompany/my-repository.git
This works fine, but the problem is that I am part of a team (to which MyUser belongs), and I do not want the git URL to contain MyUser, but instead the name of the team. How can it be done?
Thanks.