UNPKG

generator-effective

Version:

a opinionated and progressive generator to make package.json and thousands of configs effective

12 lines (10 loc) 230 B
'use strict'; const Generator = require('yeoman-generator'); module.exports = class extends Generator { writing() { this.fs.copy( this.templatePath('gitignore'), this.destinationPath('.gitignore') ); } };