-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgruntfile.js
More file actions
72 lines (58 loc) · 1.54 KB
/
gruntfile.js
File metadata and controls
72 lines (58 loc) · 1.54 KB
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
module.exports = function(grunt) {
grunt.initConfig({
bowercopy: {
options: {
srcPrefix: 'bower_components'
},
js: {
options: {
destPrefix: 'js/vendor'
},
files: {
'jquery.min.js': 'jquery/dist/jquery.min.js',
'jquery.min.map': 'jquery/dist/jquery.min.map',
'less.min.js': 'less/dist/less-1.7.0.min.js',
'modernizr.js': 'modernizr/modernizr.js'
}
},
less: {
options: {
destPrefix: 'less/vendor'
},
files: {
'_normalize.less': 'normalize-less/normalize.less'
}
}
},
jsonlint: {
sample: {
src: [ '**/*.json' ]
}
},
jshint: {
files: ['Gruntfile.js', './**/*.js'],
options: {
// options here to override JSHint defaults
globals: {
jQuery: true,
console: true,
module: true,
document: true
}
}
},
watch: {
files: ['<%= jshint.files %>'],
tasks: ['jshint', 'jsonlint']
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-jsonlint');
grunt.loadNpmTasks('grunt-bowercopy');
grunt.loadNpmTasks('grunt-bower-install-simple');
grunt.registerTask('test', ['jshint']);
grunt.registerTask('bower', ['bower-install-simple', 'bowercopy']);
grunt.registerTask('default', ['jshint', 'jsonlint', 'uglify']);
};