UNPKG

alks

Version:
10 lines (8 loc) 246 B
import { red } from 'cli-color'; import { isEmpty } from 'underscore'; export function deprecationWarning(msg: string) { msg = `\nWarning: ${ isEmpty(msg) ? 'This command is being deprecated.' : msg }`; console.error(red.bold(msg)); }