Skip to content

Commit

Permalink
fix: rephrase
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Oct 3, 2023
1 parent 195abf1 commit a82135b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/monorepo-release/src/analyze.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export async function analyze(config: Config): Promise<PackageToRelease[]> {
return []
}

log.debug("Identifying commits that touched package code...")
log.debug("Identifying commits that modified package code...")
function getChangedFiles(commitSha: string) {
return execSync(
`git diff-tree --no-commit-id --name-only -r ${commitSha}`,
Expand All @@ -92,7 +92,7 @@ export async function analyze(config: Config): Promise<PackageToRelease[]> {
log.info(
packageCommits.length,
pluralize("commit", packageCommits),
`touched package code`,
`modified package code`,
)

log.debug("Identifying packages that need a new release...")
Expand Down

0 comments on commit a82135b

Please sign in to comment.