UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

21 lines 755 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ora = exports.oraNonInteractiveMode = void 0; const ora_1 = __importDefault(require("ora")); /* eslint-disable @typescript-eslint/no-empty-function */ exports.oraNonInteractiveMode = { start: () => exports.oraNonInteractiveMode, succeed: () => { }, stop: () => { }, fail: () => { }, stopAndPersist: () => { }, set text(value) { }, }; function ora(interactive, text) { return interactive ? (0, ora_1.default)({ text }) : exports.oraNonInteractiveMode; } exports.ora = ora; //# sourceMappingURL=ora.js.map