UNPKG

crx-bump

Version:

Automatically (or with prompts) bump your version number(for Chrome Extension), commit changes, tag, and push to Git

21 lines (17 loc) 464 B
// Fork https://github.com/sindresorhus/log-symbols // @ts-check const { red, blue, green, yellow } = require('kolorist') const isUnicodeSupported = require('./is-unicode-supported.js') const main = { info: blue('ℹ'), success: green('✔'), warning: yellow('⚠'), error: red('✖') } const fallback = { info: blue('i'), success: green('√'), warning: yellow('‼'), error: red('×') } module.exports = isUnicodeSupported() ? main : fallback