0.5.3 • Published 9 years ago

yeoman-util v0.5.3

Weekly downloads
38
License
CC0-1.0
Repository
github
Last release
9 years ago

yeoman-util

Make yeoman less painful to work with.

var util = require('yeoman-util');

var MyGenerator = {
	writing: {
		// Straightforward copying of files
		eslintrc: util.copy('.eslintrc', '.eslintrc.json5'),

		// Straightforward editing of package.json files
		package: util.manifest()
	}
};