-
Notifications
You must be signed in to change notification settings - Fork 47
/
Gruntfile.js
63 lines (61 loc) · 1.04 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
module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);
grunt.initConfig({
watch: {
livereload:{
options:{
livereload:true
},
files:[
'static/eventExpired/*.html'
]
},
markdown:{
files:['static/*.md'],
tasks:['markdown']
}
},
weinre: {
dev: {
options: {
httpPort: 8082,
boundHost: '-all-'
// boundHost:'10.68.124.177'
}
}
},
connect: {
options: {
port: 9000,
open: true,
livereload: 35729,
//change this to '0.0.0.0' to access the server from outside
hostname: '0.0.0.0'
},
livereload: {
options: {
middleware: function(connect) {
return [
connect.static('static')
];
}
}
}
},
concurrent: {
dist: ['weinre','watch']
},
markdown:{
all:{
files:[
{
expand:true,
src:'static/*.md',
dest:'static/',
ext:'.html'
}]
}
}
});
grunt.registerTask('default', ['connect','concurrent']);
};