forked from vole/vole
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
73 lines (67 loc) · 1.42 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
module.exports = function(grunt) {
grunt.initConfig({
clean: ['dist/', 'bin/vole', 'bin/vole.exe'],
copy: {
dist: {
files: [
{
src: ['bin/vole'],
dest: 'dist/vole'
},
{
src: ['bin/vole.exe'],
dest: 'dist/vole.exe'
},
{
src: [
'static/**',
'README.md',
'CONTRIBUTING.md',
'CHANGELOG.md',
'LICENSE',
'config.sample.json'
],
dest: 'dist/'
}
]
}
},
chmod: {
options: {
mode: '755'
},
vole: {
src: ['dist/vole']
}
},
exec: {
install_vole: {
command: 'go install vole'
}
},
jshint: {
options: {
scripturl: true
},
prod: {
files: {
src: ['Gruntfile.js', 'static/js/*.js']
}
},
dev: {
options: {
debug: true
},
files: {
src: ['Gruntfile.js', 'static/js/*.js']
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-chmod');
grunt.loadNpmTasks('grunt-exec');
grunt.registerTask('default', ['jshint', 'clean', 'exec:install_vole', 'copy', 'chmod']);
};