1.0.0-beta.1 • Published 2 years ago

bestikk-log v1.0.0-beta.1

Weekly downloads
164
License
MIT
Repository
github
Last release
2 years ago

Bestikk Log

npm version Build

A simple console logger for your Node build scripts.

Install

$ npm i --save-dev bestikk-log

Usage

import * as log from 'bestikk-log'

log.debug('So far, so good.')
log.info('Heads up')
log.warn('Warning!')
log.error('Oh snap!')
log.success('Well done!')

log.task('Compiling the universe')

log.transform('Uglify', 'index.js', 'index.min.js')