4e208929c18dbd90f1fadcc14eba84cadce52edd.svn-base
2.68 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
67
68
69
70
71
72
73
74
75
76
77
/*
* 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 jQuery plugin, including QUnit unit tests.';
// Template-specific notes to be displayed before question prompts.
exports.notes = '_Project name_ should not contain "jquery" or "js" and ' +
'should be a unique ID not already in use at plugins.jquery.com. _Project ' +
'title_ should be a human-readable title, and doesn\'t need to contain ' +
'the word "jQuery", although it may. For example, a plugin titled "Awesome ' +
'jQuery Plugin" might have the name "awesome-plugin". For more information ' +
'please see the documentation at ' +
'https://github.com/jquery/plugins.jquery.com/blob/master/docs/manifest.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: 'jquery'}, [
// Prompt for these values.
grunt.helper('prompt_for', 'name'),
grunt.helper('prompt_for', 'title', function(value, data, done) {
// Fix jQuery capitalization.
value = value.replace(/jquery/gi, 'jQuery');
done(null, value);
}),
grunt.helper('prompt_for', 'description', 'The best jQuery plugin 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', 'MIT'),
grunt.helper('prompt_for', 'author_name'),
grunt.helper('prompt_for', 'author_email'),
grunt.helper('prompt_for', 'author_url'),
grunt.helper('prompt_for', 'jquery_version')
], function(err, props) {
// A few additional properties.
props.jqueryjson = props.name + '.jquery.json';
props.dependencies = {jquery: props.jquery_version || '>= 1'};
props.keywords = [];
// 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, {noProcess: 'libs/**'});
// Generate package.json file, used by npm and grunt.
init.writePackageJSON('package.json', {
name: 'jquery-plugin',
version: '0.0.0-ignored',
npm_test: 'grunt qunit',
// TODO: pull from grunt's package.json
node_version: '>= 0.6.0',
});
// Generate jquery.json file.
init.writePackageJSON(props.jqueryjson, props);
// All done!
done();
});
};