Commit 0aa95d6 1 parent 9224469 commit 0aa95d6 Copy full SHA for 0aa95d6
File tree 1 file changed +2
-8
lines changed
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -253,9 +253,6 @@ export default class ReleasePreparation extends Session {
253
253
await this . updateMajorChangelog ( ) ;
254
254
cli . stopSpinner ( `Updated CHANGELOG_V${ versionComponents . major } .md` ) ;
255
255
256
- await cli . prompt ( 'Finished editing the changelogs?' ,
257
- { defaultAnswer : false } ) ;
258
-
259
256
// Create release commit.
260
257
const shouldCreateReleaseCommit = await cli . prompt (
261
258
'Create release commit?' ) ;
@@ -272,9 +269,7 @@ export default class ReleasePreparation extends Session {
272
269
cli . warn ( `Please manually edit commit ${ lastCommitSha } by running ` +
273
270
'`git commit --amend` before proceeding.' ) ;
274
271
275
- await cli . prompt (
276
- 'Finished editing the release commit?' ,
277
- { defaultAnswer : false } ) ;
272
+ await cli . prompt ( 'Finished editing the release commit?' ) ;
278
273
}
279
274
280
275
cli . separator ( ) ;
@@ -625,8 +620,7 @@ export default class ReleasePreparation extends Session {
625
620
] ) ;
626
621
627
622
cli . log ( `${ messageTitle } \n\n${ messageBody . join ( '' ) } ` ) ;
628
- const useMessage = await cli . prompt (
629
- 'Continue with this commit message?' , { defaultAnswer : false } ) ;
623
+ const useMessage = await cli . prompt ( 'Continue with this commit message?' ) ;
630
624
return useMessage ;
631
625
}
632
626
You can’t perform that action at this time.
0 commit comments