We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f906d1 commit 8d63919Copy full SHA for 8d63919
bin/cm.js
@@ -232,7 +232,9 @@ function release(...args) {
232
233
let {changes, newVersion} = doRelease(pkg, setVersion, {edit})
234
235
- if (mainVersion.exec(newVersion)[0] != mainVersion.exec(version(pkg))[0]) {
+ // Turned off for now, since this creates a huge mess on accidental
236
+ // major version bumps. Maybe add a manual utility for it?
237
+ if (false && mainVersion.exec(newVersion)[0] != mainVersion.exec(version(pkg))[0]) {
238
let updated = updateDependencyVersion(pkg, newVersion)
239
if (updated.length) console.log(`Updated dependencies in ${updated.map(p => p.name).join(", ")}`)
240
}
0 commit comments