UNPKG

dragadix

Version:

A flirty, powerful CLI experience built by Aditya 💋

13 lines (9 loc) • 316 B
import figlet from "figlet"; import chalkAnimation from "chalk-animation"; export function banner(text = "DragAdi") { return figlet.textSync(text, { font: "Slant" }); } export function animateTitle(text = "DragAdi CLI") { const glitch = chalkAnimation.glitch(text); setTimeout(() => glitch.stop(), 2000); }