-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
38 lines (35 loc) · 1.01 KB
/
Gruntfile.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
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
readme_generator: {
readme: {
options: {
readme_folder: "docs",
has_travis: false,
github_username: "ronaldtreur"
},
order: {
"introduction.md": "Introduction",
"getting-started.md": "Getting Started",
"usage.md": "Usage",
"options.md": "Options",
"options-general.md": "General Options",
"options-tasks.md": "Task Options",
"options-jira.md": "Specific Task Options",
//"rules.md": "The Rules",
"examples.md": "Example Configurations",
//"contributing.md": "Contributing",
"credits.md": "Credits",
"releases.md": "Releases"
//"output.md": "Example Output",
//"building-and-testing.md": "Building and Testing",
//"legal.md": "Legal Mambo Jambo"
}
}
}
});
grunt.loadNpmTasks('grunt-readme-generator');
grunt.registerTask('readme', ['readme_generator']);
grunt.registerTask('default', ['readme']);
};