0
I am developing a package that is dependent on other packages.
What I wanted to know is if there is a form of the package I am developing already download the latest version of the packages without I need to update the publication in npm.
For example, let’s say I have package A 1.0 and package B 1.0, my package B depends on package A and package A has been upgraded to version 1.1, is there a way that when I install package B 1.0, it pulls package A 1.1? Or I need to release a B package update whenever there are updates on the packages it depends on?
If the package is yours, just inform on package json. that you want the latest version (even though you know it might break your application) of the dependencies, using *.
– Valdeir Psr