UNPKG

251 BJavaScriptView Raw
1const chalk = require('chalk')
2
3exports.log = {
4 props: {
5 default: {
6 on: (val, stamp, t) => {
7 if (val) {
8 console.log(chalk.cyan(t.parent(2).key || 'task-hub'), t.compute().replace(/\n$/, ''))
9 }
10 }
11 }
12 }
13}