|
|
|
|
|
by orliesaurus
1652 days ago
|
|
yeah dependency fixing is the way to do it with NPM shrinkwrap you lock down the version of the package you installed and their deps. That way you can use the same package on all envs.
Helps with testing and debugging as you're removing a variable (bad deps, outdated deps, newer deps etc) |
|