Skip to content

Commit

Permalink
meta: improve release script wording and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
arturi committed Dec 9, 2021
1 parent 3f56f19 commit 975dc2d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .remarkignore
Expand Up @@ -3,4 +3,5 @@ website/src/_posts/2020-*
website/src/_posts/2021-0*
examples/
CHANGELOG.md
CHANGELOG.next.md
BACKLOG.md
5 changes: 4 additions & 1 deletion private/release/choose-semverness.js
Expand Up @@ -58,8 +58,11 @@ export default async function pickSemverness (
console.log(`No commits since last release for ${name}, skipping.`)
continue
}
console.log('\n')
console.log('-'.repeat(20))
console.log(name)
console.log(
`Here are the commits that landed on ${name} since previous release:\n\n${stdout}\n`,
`\nHere are the commits that landed on ${name} since previous release:\n${stdout}\n`,
)
console.log(
`Check the web UI at https://github.com/transloadit/uppy/tree/main/${encodeURI(
Expand Down
2 changes: 1 addition & 1 deletion private/release/formatChangeLog.js
Expand Up @@ -58,7 +58,7 @@ export default async function formatChangeLog (
const { useInferred } = await prompts({
type: 'confirm',
name: 'useInferred',
message: `Use ${inferredPackages} (inferred from the files it touches)?`,
message: `Assign commit to ${inferredPackages} (inferred from the files it touches)?`,
initial: true,
})

Expand Down

0 comments on commit 975dc2d

Please sign in to comment.