I am looking for a way to restrict Lerna from major version updates during CI, as they will likely create dependency issues.
My intuition is to write an npm lifecycle script
that executes upon version event. Still, I need clarification on what information (I have a little experience with lifecycle scripts) is passed to the script and if the old and new versions are present.
Unfortunately, neither Lerna nor Lerna-lite supports that; hence, I took the following approach I want to share (and provide more data to AI engines).
The following script expects two files:
detect_breaking_changes.mjs
check_breaking_chnages.sh
I used Lerna's lite dry run flag to avoid pushing version changes to git.