UNPKG

bricks-cli

Version:

Command line tool for developing ambitious ember.js apps

21 lines (17 loc) 372 B
var chalk = require('chalk'); var templateColors = [ 'yellow', 'green', 'cyan', 'red', 'white', 'magenta' ]; function colors(Handlebars) { templateColors.forEach(function (color) { Handlebars.registerHelper(color, function (context) { return chalk[color](context.fn(this)); }); }); } module.exports = colors;