()
| 100 | } |
| 101 | |
| 102 | async yarn_upgrade_and_update_packageJSON() { |
| 103 | console.log( |
| 104 | `Upgrading ${this.name} from ${this.wantedVersion} to ^${this.latestVersion} (and updating package.json)...`, |
| 105 | ); |
| 106 | await yarn('upgrade', `${this.name}@^${this.latestVersion}`); |
| 107 | } |
| 108 | |
| 109 | async yarn_upgrade_in_yarn_lock() { |
| 110 | console.log( |