|
1 |
| -import process from 'node:process' |
2 |
| -import c from 'picocolors' |
3 |
| -import prompts from 'prompts' |
4 |
| -import semver, { SemVer, clean as cleanVersion, valid as isValidVersion } from 'semver' |
5 | 1 | import type { BumpRelease, PromptRelease } from './normalize-options'
|
6 | 2 | import type { Operation } from './operation'
|
7 | 3 | import type { ReleaseType } from './release-type'
|
| 4 | +import process from 'node:process' |
| 5 | +import * as ezSpawn from '@jsdevtools/ez-spawn' |
| 6 | +import c from 'picocolors' |
| 7 | +import prompts from 'prompts' |
| 8 | +import semver, { clean as cleanVersion, valid as isValidVersion, SemVer } from 'semver' |
8 | 9 | import { isPrerelease, releaseTypes } from './release-type'
|
9 | 10 |
|
10 | 11 | /**
|
@@ -88,6 +89,10 @@ async function promptForNewVersion(operation: Operation): Promise<Operation> {
|
88 | 89 | const next = getNextVersions(currentVersion, release.preid)
|
89 | 90 | const configCustomVersion = await operation.options.customVersion?.(currentVersion, semver)
|
90 | 91 |
|
| 92 | + if (operation.options.printCommits) { |
| 93 | + await printRecentCommits(operation) |
| 94 | + } |
| 95 | + |
91 | 96 | const PADDING = 13
|
92 | 97 | const answers = await prompts([
|
93 | 98 | {
|
@@ -148,3 +153,96 @@ async function promptForNewVersion(operation: Operation): Promise<Operation> {
|
148 | 153 | return operation.update({ release: answers.release, newVersion })
|
149 | 154 | }
|
150 | 155 | }
|
| 156 | + |
| 157 | +const messageColorMap: Record<string, (c: string) => string> = { |
| 158 | + chore: c.gray, |
| 159 | + fix: c.yellow, |
| 160 | + feat: c.green, |
| 161 | + refactor: c.cyan, |
| 162 | + docs: c.blue, |
| 163 | + doc: c.blue, |
| 164 | + ci: c.gray, |
| 165 | + build: c.gray, |
| 166 | +} |
| 167 | + |
| 168 | +export async function printRecentCommits(operation: Operation): Promise<void> { |
| 169 | + let sha: string | undefined |
| 170 | + sha ||= await ezSpawn |
| 171 | + .async( |
| 172 | + 'git', |
| 173 | + ['rev-list', '-n', '1', `v${operation.state.currentVersion}`], |
| 174 | + { stdio: 'pipe' }, |
| 175 | + ) |
| 176 | + .then(res => res.stdout.trim()) |
| 177 | + .catch(() => undefined) |
| 178 | + sha ||= await ezSpawn |
| 179 | + .async( |
| 180 | + 'git', |
| 181 | + ['rev-list', '-n', '1', operation.state.currentVersion], |
| 182 | + { stdio: 'pipe' }, |
| 183 | + ) |
| 184 | + .then(res => res.stdout.trim()) |
| 185 | + .catch(() => undefined) |
| 186 | + |
| 187 | + if (!sha) { |
| 188 | + console.log( |
| 189 | + c.blue(`i`) |
| 190 | + + c.gray(` Failed to locate the previous tag ${c.yellow(`v${operation.state.currentVersion}`)}`), |
| 191 | + ) |
| 192 | + return |
| 193 | + } |
| 194 | + |
| 195 | + const message = await ezSpawn.async( |
| 196 | + 'git', |
| 197 | + [ |
| 198 | + '--no-pager', |
| 199 | + 'log', |
| 200 | + `${sha}..HEAD`, |
| 201 | + '--oneline', |
| 202 | + ], |
| 203 | + { stdio: 'pipe' }, |
| 204 | + ) |
| 205 | + |
| 206 | + const lines = message |
| 207 | + .stdout |
| 208 | + .toString() |
| 209 | + .trim() |
| 210 | + .split(/\n/g) |
| 211 | + |
| 212 | + if (!lines.length) { |
| 213 | + console.log() |
| 214 | + console.log(c.blue(`i`) + c.gray(` No commits since ${operation.state.currentVersion}`)) |
| 215 | + console.log() |
| 216 | + return |
| 217 | + } |
| 218 | + |
| 219 | + const parsed = lines.map((line) => { |
| 220 | + const [hash, ...parts] = line.split(' ') |
| 221 | + const message = parts.join(' ') |
| 222 | + const match = message.match(/^(\w+)(\([^)]+\))?(!)?:(.*)$/) |
| 223 | + if (match) { |
| 224 | + let color = messageColorMap[match[1].toLowerCase()] || ((c: string) => c) |
| 225 | + if (match[3] === '!') { |
| 226 | + color = c.red |
| 227 | + } |
| 228 | + return [ |
| 229 | + c.dim(hash), |
| 230 | + ' ', |
| 231 | + c.bold(color([match[1], match[2], match[3]].filter(Boolean).join('').padStart(7, ' '))), |
| 232 | + c.dim(':'), |
| 233 | + ' ', |
| 234 | + color === c.gray ? color(match[4].trim()) : match[4].trim(), |
| 235 | + ].join('') |
| 236 | + } |
| 237 | + return `${c.gray(hash)} ${message}` |
| 238 | + }) |
| 239 | + console.log() |
| 240 | + console.log( |
| 241 | + c.bold( |
| 242 | + `${c.green(lines.length)} Commits since ${c.gray(sha.slice(0, 7))}:`, |
| 243 | + ), |
| 244 | + ) |
| 245 | + console.log() |
| 246 | + console.log(parsed.join('\n')) |
| 247 | + console.log() |
| 248 | +} |
0 commit comments