We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aae2548 commit 8f5126dCopy full SHA for 8f5126d
engine.js
@@ -126,8 +126,12 @@ module.exports = function(options) {
126
type: 'input',
127
name: 'body',
128
message:
129
- 'Provide a longer description of the change: (press enter to skip)\n',
130
- default: options.defaultBody
+ 'Provide a longer description of the change: (press enter to skip)\n',
+ default: options.defaultBody,
131
+ transformer: function(body) {
132
+ var color = chalk.green;
133
+ return color('(' + body.length + ') ' + body);
134
+ }
135
},
136
{
137
type: 'confirm',
0 commit comments