UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

13 lines 381 B
import oraOriginal from 'ora'; export const oraNonInteractiveMode = { start: () => oraNonInteractiveMode, succeed: () => { }, stop: () => { }, fail: () => { }, stopAndPersist: () => { }, set text(value) { }, }; export function ora(interactive, text) { return interactive ? oraOriginal({ text }) : oraNonInteractiveMode; } //# sourceMappingURL=ora.js.map