15db79c86f2049055dc75d936c3cc712a2ca0564.svn-base
2.58 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
78
79
80
/*
* 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 basic grunt.js gruntfile.';
// Template-specific notes to be displayed before question prompts.
exports.notes = 'This template tries to guess file and directory paths, but ' +
'you will most likely need to edit the generated grunt.js file before ' +
'running grunt. _If you run grunt after generating grunt.js, and grunt ' +
'exits with errors, edit the grunt.js file!_';
// Any existing file or directory matching this wildcard will cause a warning.
exports.warnOn = 'grunt.js';
// The actual init template.
exports.template = function(grunt, init, done) {
grunt.helper('prompt', {}, [
// Prompt for these values.
{
name: 'dom',
message: 'Is the DOM involved in ANY way?',
default: 'Y/n',
warning: 'Yes: QUnit unit tests + JSHint "browser" globals. No: Nodeunit unit tests.'
},
{
name: 'min_concat',
message: 'Will files be concatenated or minified?',
default: 'Y/n',
warning: 'Yes: min + concat tasks. No: nothing to see here.'
},
{
name: 'package_json',
message: 'Will you have a package.json file?',
default: 'Y/n',
warning: 'This changes how filenames are determined and banners are generated.'
}
], function(err, props) {
props.dom = /y/i.test(props.dom);
props.min_concat = /y/i.test(props.min_concat);
props.package_json = /y/i.test(props.package_json);
props.test_task = props.dom ? 'qunit' : 'test';
props.file_name = props.package_json ? '<%= pkg.name %>' : 'FILE_NAME';
// Find the first `preferred` item existing in `arr`.
function prefer(arr, preferred) {
for (var i = 0; i < preferred.length; i++) {
if (arr.indexOf(preferred[i]) !== -1) {
return preferred[i];
}
}
return preferred[0];
}
// Guess at some directories, if they exist.
var dirs = grunt.file.expandDirs('*').map(function(d) { return d.slice(0, -1); });
props.lib_dir = prefer(dirs, ['lib', 'src']);
props.test_dir = prefer(dirs, ['test', 'tests', 'unit', 'spec']);
// Maybe this should be extended to support more libraries. Patches welcome!
props.jquery = grunt.file.expandFiles('**/jquery*.js').length > 0;
// Files to copy (and process).
var files = init.filesToCopy(props);
// Actually copy (and process) files.
init.copyAndProcess(files, props);
// All done!
done();
});
};