I have a local repository (gitlab) with several components, I am pointing in package.json
each component directly to this repository. Here is an example:
"dependencies": {
"XX-alert": "git+http://git.domain.com/XX-platform/XX-alert.git",
...
}
I would like every time a developer makes a push
to master
anyone on the network making a npm update
could get this update.
At this point in time for this to work I need to re-add the package:
npm install git+http://git.domain.com/XX-platform/XX-alert.git --save
Thank you.