UNPKG

@kurohyou/k-scaffold

Version:

This framework simplifies the task of writing code for Roll20 character sheets. It aims to provide an easier interface between the html and sheetworkers with some minor css templates.

16 lines (12 loc) 365 B
'use strict'; const { reporter } = require('./reporter'); /** * Emit a build-status message. * In console mode: logged directly (blue background, as before). * In dashboard mode: suppressed — file names are shown in the status bar. * @param {string} string */ const kStatus = (string) => { reporter.log(`${string}`.bgBlue); }; module.exports = kStatus;