forked from ericclemmons/grunt-angular-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
227 lines (204 loc) · 5.95 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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
* grunt-angular-templates
* https://github.com/ericclemmons/grunt-angular-templates
*
* Copyright (c) 2013 Eric Clemmons
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
grunt.initConfig({
clean: {
tests: 'tmp'
},
nodeunit: {
tests: ['test/*.js']
},
watch: {
tests: '<%= nodeunit.tests %>',
tasks: 'default'
},
jshint: {
all: ['Gruntfile.js', 'tasks/**/*.js', '<%= nodeunit.tests %>'],
options: {
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
boss: true,
eqnull: true,
node: true,
es5: true
},
globals: {}
},
concat: {
custom_concat: {
src: 'test/fixtures/one.html',
dest: 'tmp/custom_concat_combined.js',
options: {
separator: '\n\n'
}
}
},
// All supported examples should be here
ngtemplates: {
// Change `angular` namespace to something else
custom_angular: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_angular.js',
options: {
angular: 'myAngular'
}
},
// Custom CommonJS bootstrapper
custom_bootstrap: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_bootstrap.js',
options: {
bootstrap: function(module, script) {
return 'module.exports = function($templateCache) {\n' + script + '\n};\n';
}
}
},
// Append dest to existing concat target
custom_concat: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_concat.js',
options: {
concat: 'custom_concat'
}
},
html5: {
src: ['test/fixtures/html5.html'],
dest: 'tmp/html5.js'
},
// Minify the HTML
custom_htmlmin: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_htmlmin.js',
options: {
htmlmin: {
collapseBooleanAttributes: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}
}
},
missing_htmlmin: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/missing_htmlmin.js',
options: {
htmlmin: null
}
},
// Minify the HTML, but using another tasks' settings
task_htmlmin: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/task_htmlmin.js',
options: {
htmlmin: '<%= ngtemplates.custom_htmlmin.options.htmlmin %>'
}
},
// Default `module` option to the sub-task name (`default_module`)
default_module: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/default_module.js'
},
// Customize angular module
custom_module: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_module.js',
options: {
module: 'customModule'
}
},
// Customize angular module
callback_module: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/callback_module.js',
options: {
module: function(url, options) {
return url.split('/').join('.');
},
url: function(file) {
return file.replace('.html', '');
}
}
},
// Customize template URL prefix
custom_prefix: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_prefix.js',
options: {
prefix: '/static'
}
},
// Customize template source
custom_source: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_source.js',
options: {
source: function(source, url) {
return "<!-- Template: " + url + " -->\n" + source;
}
}
},
// Module should be new & have [] defined
standalone: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/standalone.js',
options: {
standalone: true
}
},
// URLs should match path exactly
full_url: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/full_url.js'
},
// URLs should match path, sans the `cwd`
relative_url: {
cwd: 'test/fixtures',
src: ['one.html', 'two/**/*.html'],
dest: 'tmp/relative_url.js'
},
// Customize URLs to not have an extension
custom_url: {
src: ['test/fixtures/one.html', 'test/fixtures/two/**/*.html'],
dest: 'tmp/custom_url.js',
options: {
url: function(url) {
return url.replace('.html', '');
}
}
},
// Empty file
empty_file: {
src: 'test/fixtures/empty.html',
dest: 'tmp/empty_file.js'
},
// undefined file
undefined_file: {
src: 'test/fixtures/undefined.html',
dest: 'tmp/undefined_file.js'
}
}
});
// Load local tasks.
grunt.loadTasks('tasks');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.registerTask('default', ['jshint', 'clean', 'ngtemplates', 'concat', 'nodeunit']);
};