generator-bannertime
Version:
Yeoman generator for creating HTML5 advertising campaigns
22 lines (18 loc) • 439 B
JavaScript
/*
* Process the deploy script and task.
*/
module.exports = function files() {
const props = {
deployUsername: this.props.deployUsername,
deployDomain: this.props.deployDomain
};
this.fs.copyTpl(
this.templatePath('_deploy.sh'),
this.destinationPath('gulpfile.js/lib/deploy.sh'),
props
);
this.fs.copy(
this.templatePath('deploy.js'),
this.destinationPath('gulpfile.js/tasks/deploy.js')
);
};