generator-confit
Version:
Yeoman generator for creating the development process, tools and a sample project for current-generation web applications
18 lines (14 loc) • 322 B
JavaScript
;
module.exports = function() {
/**
* @this generator
*/
function write() {
this.log('Writing NPM testVisualRegression options');
let toolResources = this.buildTool.getResources().testVisualRegression;
this.writeBuildToolConfig(toolResources);
}
return {
write: write,
};
};