This repository has been archived by the owner on Jun 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
172 lines (151 loc) · 3.07 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
/*
* grunt-xml-sitemap
* https://github.com/furzeface/grunt-xml-sitemap
*
* Copyright (c) 2014 Daniel Furze
* Licensed under the MIT license.
*/
'use strict';
module.exports = function (grunt) {
// Reads package.json and dynamically loads all Grunt tasks
require('load-grunt-tasks')(grunt, {
scope: 'devDependencies',
pattern: [
'grunt-*'
]
});
// Time all of the things
require('time-grunt')(grunt);
// Project configuration
grunt.initConfig({
// Config
config: {
gruntfile: 'Gruntfile.js',
tasks: 'tasks',
tests: 'test',
tmp: 'tmp'
},
// Watchers for development
watch: {
gruntfile: {
files: '<%= config.gruntfile %>',
tasks: [
'jshint:gruntfile'
]
},
tasks: {
files: '<%= config.tasks %>/**/*.js',
tasks: [
'jshint:tasks',
'test'
]
},
test: {
files: '<%= config.tests %>/**/*_test.js',
tasks: [
'jshint:tests',
'nodeunit'
]
}
},
// Housekeeping tasks
clean: {
tests: [
'<%= config.tmp %>'
]
},
// Script tasks
jshint: {
options: {
jshintrc: '.jshintrc',
reporter: require('jshint-stylish')
},
gruntfile: [
'<%= config.gruntfile %>',
],
tasks: [
'<%= config.tasks %>/*.js',
],
tests: [
'<%= nodeunit.tests %>'
]
},
// Tests
nodeunit: {
tests: [
'<%= config.tests %>/*_test.js'
]
},
// Configuration to be run (and then tested).
xml_sitemap: {
default_options: {
options: {
},
files: [
{
expand: true,
cwd: '<%= config.tests %>/fixtures',
src: [
'**/*.html'
]
}
]
},
default_options_lastmod: {
options: {
fileName: 'sitemap-lastmod',
lastMod: '2014-10-18T09:54:31.000Z',
stripIndex: false
},
files: [
{
expand: true,
cwd: '<%= config.tests %>/fixtures',
src: [
'**/*.html'
]
}
]
},
custom_options: {
options: {
changefreq: 'weekly',
dest: '<%= config.tmp %>/',
fileName: 'sitemap-custom',
siteRoot: 'http://daniel.furzeface.com/',
lastMod: '2014-10-18T09:54:31.000Z',
priority: '0.8'
},
files: [
{
expand: true,
cwd: '<%= config.tests %>/fixtures',
src: [
'**/*.html',
'!exclude/**/*.html'
]
}
]
}
}
});
// Load this plugin's task
grunt.loadTasks('tasks');
// Test task alias
grunt.registerTask('test', [
'clean',
'xml_sitemap',
'nodeunit'
]);
// Task for local development
grunt.registerTask('develop', [
'default',
'test',
'watch'
]);
// By default hint and run all tests
grunt.registerTask('default', [
'jshint',
'test'
]);
};