We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e8286f commit febd955Copy full SHA for febd955
bin/lib/preview.js
@@ -1,16 +1,15 @@
1
-const chalk = require('chalk')
2
const extend = require('deep-extend')
3
const columnWidth = 20
4
5
function preview (options) {
6
- const intro = '\ncreating release ' + chalk.bold(options.tag_name) +
7
- ' for ' + chalk.bold(options.owner + '/' + options.repo) + '\n'
+ const intro = '\ncreating release ' + options.tag_name +
+ ' for ' + options.owner + '/' + options.repo + '\n'
8
const prettyOptions = formatOptions(options)
9
10
console.log(intro)
11
12
prettyOptions.forEach(function (option) {
13
- console.log(chalk.cyan(option.column1) + option.column2)
+ console.log(option.column1 + option.column2)
14
})
15
16
console.log('')
0 commit comments