4 ms·
Nice to see people using some of my libs to do nifty stuff but I must caution against depending on `latest` since this could cause your application to break in
by substack 14y ago
Nice to see people using some of my libs to do nifty stuff but I must caution against depending on `latest` since this could cause your application to break in the future if I push breaking changes: https://github.com/ptrsghr/joint/blob/master/package.json#L5-L7 https://github.com/ptrsghr/joint/blob/master/package.json#L5...
It's a better idea to do:
"dnode" : "~0.9.11",
"browserify" : "~1.10.17"
since that way you'll get patch fixes automatically but your library won't break when I push out an update that bumps the minor version, which could including backwards-incompatible changes.
- rgbrgb 14y agoGood point! Thanks for the tip and for all your great and inspiring modules. Edit: I just switched it to use version numbers.