node.js - Npm package upgrade notification availlable? -
i wrote node package contains breaking changes in next release. there exist way notify developers via console while upgrading via npm?
i don't think there solution inform via console, if new version given new "major" number, should not break code.
breaking example
- client dependency: ~1.2.2
- your old version: 1.2.2
- your new version: 1.2.3
the client upgrade version 1.2.3.
not breaking example
- user dependency: ~1.2.2
- your old version: 1.2.2
- your new version: 1.3.0
the client not upgrade.
Comments
Post a Comment