UNPKG

generator-gitattributes

Version:

A Yeoman generator that creates a .gitattributes file to replace line endings to LF

12 lines (10 loc) 238 B
'use strict'; var generators = require('yeoman-generator'); module.exports = generators.Base.extend({ writing: function() { this.fs.copyTpl( this.templatePath('gitattributes'), this.destinationPath('.gitattributes') ); } });