Skip to content

Instantly share code, notes, and snippets.

@joshgreen
Last active August 29, 2015 14:06
Show Gist options
  • Save joshgreen/06cabf4b6058bac17ebd to your computer and use it in GitHub Desktop.
Save joshgreen/06cabf4b6058bac17ebd to your computer and use it in GitHub Desktop.
Humans generator
var gulp = require('gulp'),
gutil = require('gulp-util'),
humans = require('humans-generator');
gulp.task('humans', function() {
humans({
'team': {
'Hayden Bleasel': {
'Twitter': '@haydenbleasel',
'Email': '[email protected]',
'Country': 'Australia'
}
},
'thanks': [
'Hayden Bleasel (@haydenbleasel on Twitter) <[email protected]>'
],
'site': {
'Standards': 'HTML5, CSS3',
'Components': 'jQuery, Normalize.css',
'Software': 'Atom'
},
'note': 'Built with love by Hayden Bleasel.'
});
});
// Default task
gulp.task('default', ['humans']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment