forked from kennethcachia/background-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
96 lines (81 loc) · 2.2 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
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
watch: {
source: {
files: ['background-check.js'],
tasks: ['clean:source', 'jshint', 'uglify', 'copy']
},
examples: {
files: ['examples/src/*/*.*'],
tasks: ['clean:examples', 'assemble']
},
examplesJS: {
files: ['examples/build/scripts/*.js', '!examples/build/scripts/*.min.js'],
tasks: ['jshint']
}
},
assemble: {
options: {
flatten: true,
data: 'examples/src/data/*.json',
layout: 'examples/src/layouts/default.hbs',
partials: ['examples/src/partials/*.hbs']
},
build: {
files: [{
src: ['examples/src/pages/*.hbs'],
dest: 'examples/build/'
}]
}
},
jshint: {
files: ['background-check.js', 'examples/build/scripts/*.js', '!examples/build/scripts/*.min.js'],
options: {
'white': true,
'indent': 2,
'curly': true,
'eqnull': true,
'latedef': true,
'newcap': true,
'noarg': true,
'eqeqeq': true,
'immed': true,
'undef': true,
'unused': true,
'browser': true,
'globals': {
'console': false,
'define': false,
'require': false
}
}
},
clean: {
source: ['background-check.min.js', 'examples/build/scripts/background-check.min.js'],
examples: ['examples/build/*.html']
},
uglify: {
options: {
banner: '/* BackgroundCheck\n <%= pkg.homepage %>\n v<%=pkg.version %> */\n\n'
},
build: {
src: 'background-check.js',
dest: 'background-check.min.js'
}
},
copy: {
min: {
src: 'background-check.min.js',
dest: 'examples/build/scripts/background-check.min.js'
}
}
});
grunt.loadNpmTasks('assemble');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('default', ['watch']);
};