generator-bannertime
Version:
Yeoman generator for creating HTML5 advertising campaigns
17 lines (14 loc) • 567 B
JavaScript
/**
* The generator end message.
*/
const chalk = require('chalk');
module.exports = function end() {
const { yellow, green, red } = chalk.bold;
this.log('\n');
this.log(yellow('┌---------------------------------------┐'));
this.log(`${yellow('| Start by entering \'')}${green('npm start')}${yellow('\' below |')}`);
this.log(yellow('└---------------------------------------┘'));
this.log(' ');
this.log(`${yellow('You can install gulp using:')} ${green('npm i -g gulp')}\n`);
this.log(`${red('For help:')} ${green('gulp help')}\n`);
};