UNPKG

mcrp-util

Version:

A one-stop shop for all things Resource Pack, the Texture Pack replacement since 1.6-pre

13 lines (10 loc) 337 B
const Chalk = require('chalk') module.exports.printPack= function(pack) { console.log(Chalk.yellow(`Name: ${pack.name}`)) console.log(Chalk.green(`Version Range: ${pack.version}`)) console.log('============') console.log(`${pack.description}`) } module.exports.notice = function(message) { console.log(Chalk.gray(message)) }