Linked Questions

Popular Questions

I have created an NPM module which is already built and published. so when somebody installs it, my module doesn't really need any extra dependency to work properly as it is already built.

However, the current behavior is that when I install my module in some other repository it updates some other modules in package-lock.json

Is there a way to avoid this behavior as my module is already pre-built and doesn't need any dependency to work properly?

Related Questions