forked from gruntjs/grunt-init-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.js
96 lines (81 loc) · 2.63 KB
/
template.js
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
* grunt-init-node
* https://gruntjs.com/
*
* Copyright (c) 2013 "Cowboy" Ben Alman, contributors
* Licensed under the MIT license.
*/
'use strict';
// Basic template description.
exports.description = 'Create a Node.js module, including Nodeunit unit tests.';
// Template-specific notes to be displayed before question prompts.
exports.notes = '_Project name_ shouldn\'t contain "node" or "js" and should ' +
'be a unique ID not already in use at search.npmjs.org.';
// Template-specific notes to be displayed after question prompts.
exports.after = 'You should now install project dependencies with _npm ' +
'install_. After that, you may execute project tasks with _grunt_. For ' +
'more information about installing and configuring Grunt, please see ' +
'the Getting Started guide:' +
'\n\n' +
'http://gruntjs.com/getting-started';
// Any existing file or directory matching this wildcard will cause a warning.
exports.warnOn = '*';
// The actual init template.
exports.template = function(grunt, init, done) {
init.process({type: 'node'}, [
// Prompt for these values.
init.prompt('name'),
init.prompt('description'),
init.prompt('version', '0.0.1'),
init.prompt('repository'),
init.prompt('homepage'),
init.prompt('bugs'),
init.prompt('licenses', 'MIT'),
init.prompt('author_name'),
init.prompt('author_email'),
init.prompt('author_url'),
init.prompt('node_version', '>= 0.10.0'),
init.prompt('main'),
{
name: 'travis',
message: 'Will this project be tested with Travis CI?',
default: 'Y/n',
warning: 'If selected, you must enable Travis support for this project in https://travis-ci.org/profile'
},
{
name: 'jshint',
message: 'Will this project be tested with JSHint?',
default: 'Y/n',
warning: 'If selected, please change the setting in .jshintrc file'
}
], function(err, props) {
props.keywords = [];
props.devDependencies = {
'grunt': '^0.4.5',
'grunt-contrib-jshint': '^0.10.0',
'grunt-contrib-watch': '^0.6.1',
'grunt-ec2': '^0.8.1',
'grunt-prompt': '^1.1.0',
'grunt-shell': '^0.7.0',
'grunt-ssh': '^0.11.1'
};
props.travis = /y/i.test(props.travis);
// Files to copy (and process).
var files = init.filesToCopy(props);
if (!props.travis) {
delete files['.travis.yml'];
}
props.jshint = /y/i.test(props.jshint);
if (!props.jshint) {
delete files['.jshintrc'];
}
// 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();
});
};