This repository was archived by the owner on Nov 27, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathGruntfile.js
96 lines (92 loc) · 2.1 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) {
// Project configuration.
grunt.initConfig({
hash: {
php: {
options: {
mapping: 'out/assets.php'
},
src: 'examples/*.js',
dest: 'out/dist/php/'
},
json: {
options: {
mapping: 'out/assets.json'
},
src: 'examples/*.js',
dest: 'out/dist/json/'
},
single: {
options: {
mapping: 'out/single.json'
},
src: 'examples/test1.js',
dest: 'out/dist/single/'
},
no_map: {
src: 'examples/*.js',
dest: 'out/dist/no_map/'
},
path: {
options: {
mapping: 'out/path.json',
destBasePath: 'out/',
srcBasePath: 'examples/'
},
src: 'examples/**/*.js',
dest: 'out/dist/path/'
},
flatten: {
options: {
mapping: 'out/flatten.json',
flatten: true
},
src: 'examples/**/*.js',
dest: 'out/dist/flatten/'
},
no_dest: {
options: {
mapping: 'out/no_dest.json'
},
src: 'examples/test1.js'
},
custom_hash: {
options: {
mapping: 'out/custom_hash.json',
hashFunction: function(source, encoding){
return require('crypto')
.createHash('sha1')
.update(source, encoding)
.digest('hex');
},
hashSeparator: '-'
},
src: 'examples/test1.js'
}
},
watch: {
files: '<%= jshint.all %>',
tasks: 'default'
},
jshint: {
all: ['Gruntfile.js', 'tasks/**/*.js', 'test/**/*.js']
},
clean: [
'out/',
'examples/test1.*.js',
'examples/test1-*.js'
],
simplemocha: {
options: {
ui: 'tdd',
reporter: 'Spec'
},
all: { src: 'test/**/*.js' }
}
});
require('load-grunt-tasks')(grunt);
grunt.loadTasks('tasks');
// Default task.
grunt.registerTask('default', ['clean', 'jshint', 'hash', 'simplemocha']);
grunt.registerTask('dev', ['watch']);
};