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
|
/*global module */
module.exports = function( grunt ) {
'use strict';
grunt.initConfig({
meta: {
version: '2.8.3',
banner: '/*!\n' +
' * Modernizr v<%= meta.version %>\n' +
' * www.modernizr.com\n *\n' +
' * Copyright (c) Faruk Ates, Paul Irish, Alex Sexton\n' +
' * Available under the BSD and MIT licenses: www.modernizr.com/license/\n */'
},
qunit: {
files: ['test/index.html']
},
lint: {
files: [
'grunt.js',
'modernizr.js',
'feature-detects/*.js'
]
},
min: {
dist: {
src: [
'<banner:meta.banner>',
'modernizr.js'
],
dest: 'modernizr.min.js'
}
},
watch: {
files: '<config:lint.files>',
tasks: 'lint'
},
jshint: {
options: {
boss: true,
browser: true,
curly: false,
devel: true,
eqeqeq: false,
eqnull: true,
expr: true,
evil: true,
immed: false,
laxcomma: true,
newcap: false,
noarg: true,
smarttabs: true,
sub: true,
undef: true
},
globals: {
Modernizr: true,
DocumentTouch: true,
TEST: true,
SVGFEColorMatrixElement : true,
Blob: true
}
}
});
grunt.registerTask('default', 'min');
// Travis CI task.
grunt.registerTask('travis', 'qunit');
};
|