I'm on a node project with a launcher and several homemade plugins. Those plugins are marked as dependencies in the launcher package.json
with the git repo adress.
I recently tried npm shrinkwrap
which perfectly give me the commit used for each of my plugins but any dev on plugins will break this. I trid to use npm link
for my git repo, but they aren't tracked by shrinkwrap
anymore.
So basically, how can I have cloned repo for my plugins where I can work and a way to get a snapshot of my dependencies at a precise moment?
Thank you for any lead you could give me.