()
| 92 | } |
| 93 | |
| 94 | async upgrade() { |
| 95 | if (this.isMajorVersionBump() || this.isMinorVersionBump()) { |
| 96 | await this.yarn_upgrade_and_update_packageJSON(); |
| 97 | } else { |
| 98 | await this.yarn_upgrade_in_yarn_lock(); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | async yarn_upgrade_and_update_packageJSON() { |
| 103 | console.log( |
no test coverage detected