-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGruntfile.js
133 lines (125 loc) · 2.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*jshint camelcase:false */
/*
* athens meetups
* https://github.com/athens/meetups
*
* Copyright (c) 2014 Athens contributors
* Licensed under the MIT license.
*/
module.exports = function(grunt) {
// Load all grunt tasks
require('load-grunt-tasks')(grunt);
// Project configuration.
grunt.initConfig({
copy: {
dist: {
files: {
'_site_git/' : '_site/**'
}
},
},
shell: {
options: {
stdout: true,
},
jekyllServer: {
command: 'rm -rf _site/*; bundle exec jekyll build --watch',
},
jekyllBuild: {
command: 'rm -rf _site/*; bundle exec jekyll build',
}
},
less: {
development: {
options: {
paths: ['assets/styles']
},
files: {
'temp/styles-expanded.css': ['assets/styles/boot.less']
}
}
},
cssmin: {
combine: {
files: {
'assets/themes/twitter/css/styles.css': ['temp/styles-expanded.css']
}
}
},
browserify: {
dist: {
files: {
'temp/app.js': ['_frontapp/app.js'],
},
}
},
uglify: {
dist: {
files: {
'assets/app.js': ['temp/app.js']
}
}
},
watch: {
styles: {
files: ['assets/styles/*.less'],
tasks: ['css'],
},
app: {
files: ['_frontapp/**/*.js'],
tasks: ['build'],
}
},
open: {
server: {
path: 'http://localhost:9003/'
}
},
parallel: {
devel: {
options: {
stream: true
},
tasks: [{
grunt: true,
args: ['connect:server'],
}, {
grunt: true,
args: ['shell:jekyllServer']
}, {
grunt: true,
args: ['watch:styles']
}, {
grunt: true,
args: ['watch:app']
}, {
grunt: true,
args: ['open:server']
}]
},
},
connect: {
server: {
options: {
port: 9003,
base: '_site',
livereload: true,
keepalive: true,
}
}
},
});
grunt.registerTask('server', [
'parallel:devel',
]);
grunt.registerTask('build', 'browserify and uglify', [
'browserify:dist',
'uglify:dist',
]);
grunt.registerTask('css', 'Compile and minify less styles', [
'less:development',
'cssmin:combine',
]);
// Default task.
grunt.registerTask('default', 'server');
};