generator-bannertime
Version:
Yeoman generator for creating HTML5 advertising campaigns
16 lines (12 loc) • 327 B
JavaScript
/**
* Install the dependencies.
*/
const chalk = require('chalk');
module.exports = function install() {
this.log(`${chalk.green('New banner format copied from:')} ${chalk.cyan(this.props.bannerMaster)}`);
if (this.props.includeOfflineScripts === true) {
this.npmInstall(['gsap'], {
dev: true
});
}
};