()
| 73 | } |
| 74 | |
| 75 | isMinorVersionBump() { |
| 76 | return ( |
| 77 | this.minorVersionLocked && |
| 78 | !satisfies(this.latestVersion, `~${this.wantedVersion}`) |
| 79 | ); |
| 80 | } |
| 81 | |
| 82 | async smoketestAndCommit(packageName = null) { |
| 83 | const packageJSONs = await glob('packages/*/*/package.json'); |
no outgoing calls
no test coverage detected