Skip to content

Instantly share code, notes, and snippets.

@ryanjyost
Created March 19, 2020 01:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanjyost/15d49dcc1c000942cb77e4898465057a to your computer and use it in GitHub Desktop.
Save ryanjyost/15d49dcc1c000942cb77e4898465057a to your computer and use it in GitHub Desktop.
plugins
module.exports = on => {
on(`task`, {
error(message) {
console.error("\x1b[31m", "ERROR:", message, "\x1b[0m");
},
warn(message) {
console.warn("\x1b[33m", "WARNING:", message, "\x1b[0m");
},
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment