@omlet/cli
Version:
Omlet (https://omlet.dev) is a component analytics tool that uses a CLI to scan your codebase to detect components and their usage. Get real usage insights from customizable charts to measure adoption across all projects and identify opportunities to impr
16 lines (15 loc) • 471 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.createSpinner = void 0;
const ora_1 = __importDefault(require("ora"));
function createSpinner(text) {
return (0, ora_1.default)({
text,
color: "yellow",
spinner: "flip",
});
}
exports.createSpinner = createSpinner;