57f44233a063f4ffe76d410afa77e2442bf0261b.svn-base
2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
* 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();
});
};