UNPKG

272 BJavaScriptView Raw
1const boxenLog = require('boxen');
2
3module.exports = (message, options = {}) => {
4 console.log(boxenLog(message, Object.assign({
5 padding: { left: 4, right: 4, top: 1, bottom: 1 },
6 margin: 1,
7 borderStyle: 'round',
8 borderColor: 'green',
9 }, options)));
10};