Skip to content

Commit 4d9a57c

Browse files
committed
style: update log
1 parent 6ed586d commit 4d9a57c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/package/release.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,14 +190,14 @@ export default class Publish {
190190

191191
// confirm no changes
192192
if ( !this.#changelog.hasChanges ) {
193-
res = await confirm( "No changes since the parent release.\nContinue the release process?", [ "yes", "[no]" ] );
193+
res = await confirm( "No changes since the previous release.\nContinue the release process?", [ "yes", "[no]" ] );
194194

195195
if ( res !== "yes" ) return result( [ 400, "Terminated" ] );
196196
}
197197

198198
// confirm no notable changes
199199
else if ( !this.#yes && !this.#changelog.hasNotableChanges ) {
200-
res = await confirm( "No notable changes since the parent release.\nContinue the release process?", [ "yes", "[no]" ] );
200+
res = await confirm( "No notable changes since the previous release.\nContinue the release process?", [ "yes", "[no]" ] );
201201

202202
if ( res !== "yes" ) return result( [ 400, "Terminated" ] );
203203
}

0 commit comments

Comments
 (0)