UNPKG

@eve-tools/cli

Version:

Everest cli to speed up project start-up and standardized frontend , backend architecture

12 lines (11 loc) 286 B
import boxen from "boxen"; import { logger } from "./logger.js"; export const printTextIntoBox = (text, options) => { logger.default(boxen(text.join(""), { padding: 1, width: 60, borderStyle: "round", dimBorder: true, ...options, })); };