UNPKG

ember-blog

Version:

Adds a static blog to any Ember CLI app, supporting posts written in Markdown and HTMLBars

20 lines (13 loc) 333 B
'use strict'; var chalk = require('chalk'); module.exports = { error: function(message) { console.log(chalk.red('Error: ' + message)); }, success: function(message) { console.log(chalk.green('Success: ' + message)); }, warning: function(message) { console.log(chalk.yellow('Warning: ' + message)); }, }