UNPKG

pruno-cli

Version:

A CLI tool for scaffolding projects that use the pruno build tool and a generator for creating components.

15 lines (12 loc) 310 B
import colors from 'colors'; export default class Logger { static log(...args) { console.log.apply(console, ['[pruno]'.green].concat(args)); } constructor() { throw new Error( 'Generator should not be instantiated, please use ' + 'the static methods that it provides.' ); } }