▲ | chatmasta 3 days ago | |||||||||||||||||||||||||||||||||||||
My guy… in the JS ecosystem a “lock file” is something that restricts your package installer to an arbitrary range of packages, i.e. no restrictions at all and completely unpredictable. You have to go out of your way to “pin” a package to a specific version. | ||||||||||||||||||||||||||||||||||||||
▲ | Izkata 3 days ago | parent [-] | |||||||||||||||||||||||||||||||||||||
Lockfiles use exact hashes, not versions/version ranges. Javascript projects use two files, a package file with version ranges (used when upgrading) and a lockfile with the exact version (used in general when installing in an existing project). | ||||||||||||||||||||||||||||||||||||||
|