You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

66 lines
2.2 KiB

/*
* grunt
* http://gruntjs.com/
*
* Copyright (c) 2012 "Cowboy" Ben Alman
* Licensed under the MIT license.
* https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
*/
// Basic template description.
exports.description = 'Create a grunt plugin, including Nodeunit unit tests.';
// Template-specific notes to be displayed before question prompts.
exports.notes = 'The grunt plugin system is still under development. For ' +
'more information, see the docs at https://github.com/gruntjs/grunt/blob/master/docs/plugins.md';
// Any existing file or directory matching this wildcard will cause a warning.
exports.warnOn = '*';
// The actual init template.
exports.template = function(grunt, init, done) {
grunt.helper('prompt', {type: 'grunt'}, [
// Prompt for these values.
grunt.helper('prompt_for', 'name', function(value, data, done) {
// Prepend "grunt-" to default name if not already there.
data.short_name = value;
value = data.full_name = 'grunt-' + value;
// if (!/^grunt-/.test(value)) { value = 'grunt-' + value; }
done(null, value);
}),
grunt.helper('prompt_for', 'description', 'The best sample grunt tasks ever.'),
grunt.helper('prompt_for', 'version'),
grunt.helper('prompt_for', 'repository'),
grunt.helper('prompt_for', 'homepage'),
grunt.helper('prompt_for', 'bugs'),
grunt.helper('prompt_for', 'licenses'),
grunt.helper('prompt_for', 'author_name'),
grunt.helper('prompt_for', 'author_email'),
grunt.helper('prompt_for', 'author_url'),
grunt.helper('prompt_for', 'grunt_version'),
grunt.helper('prompt_for', 'node_version', '*')
], function(err, props) {
// Set a few grunt-plugin-specific properties.
props.main = 'grunt.js';
props.npm_test = 'grunt test';
props.bin = 'bin/' + props.name;
props.keywords = ['gruntplugin'];
// Files to copy (and process).
var files = init.filesToCopy(props);
// Add properly-named license files.
init.addLicenseFiles(files, props.licenses);
// Actually copy (and process) files.
init.copyAndProcess(files, props);
// Generate package.json file.
init.writePackageJSON('package.json', props);
// All done!
done();
});
};