forked from gr2m/milestones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
206 lines (187 loc) · 4.46 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
var livereloadSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet;
var mountFolder = function (connect, dir) {
'use strict';
return connect.static(require('path').resolve(dir));
};
module.exports = function(grunt) {
'use strict';
// load all grunt tasks (node_modules/grunt-* packages)
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
// Project configuration.
grunt.initConfig({
// load app meta info
pkg: grunt.file.readJSON('package.json'),
// js hint Gruntfile & src files
jshint: {
gruntfile: {
src: ['gruntfile.js']
},
src: {
src: ['src/js/**/*.js']
}
},
watch: {
html: {
options: {
livereload: true
},
files: [
'src/index.html'
],
tasks: []
},
js: {
options: {
livereload: true
},
files: [
'src/js/**/*.js'
],
tasks: ['jshint']
},
css: {
options: {
livereload: true
},
files: [
'.tmp/css/**/*.css'
],
tasks: []
},
sass: {
files: [
'src/css/**/*.scss'
],
tasks: ['sass']
},
},
connect: {
src: {
options: {
port: 9000,
hostname: '*',
base: 'src/',
open: true,
livereload: true,
middleware: function(connect) {
return [
// https://github.com/intesso/connect-livereload#grunt-example
livereloadSnippet,
// load assets from tmp folder first, fallback to src
mountFolder(connect, '.tmp'),
mountFolder(connect, 'src')
];
}
}
},
build: {
options: {
port: 3000,
hostname: '*',
base: 'build/',
open: true,
keepalive: true
}
}
},
// remove build folder before new build
clean: {
build: { src: ['build'] },
tmp: { src: ['.tmp', '.sass-cache', '.grunt'] },
},
// https://github.com/gruntjs/grunt-contrib-sass
// compile *.scss files into *.css
sass: {
build: {
options: {
style: 'expanded',
compass: true
},
files: [{
expand: true,
cwd: 'src/',
src: [
'css/app.scss'
],
dest: '.tmp/',
ext: '.css'
}]
}
},
copy: {
build: {
files: [{
expand: true,
cwd: 'src/',
src: [
'index.html',
'js/*.js',
'favicons/*.*',
'vendor/bootstrap/dist/css/bootstrap.css',
'vendor/jquery/dist/jquery.js',
'vendor/underscore/underscore.js',
'vendor/bootstrap/dist/js/bootstrap.js',
'vendor/initials/initials.js',
'vendor/markdown/lib/markdown.js'
],
dest: 'build/'
}, {
expand: true,
cwd: '.tmp/',
src: [
'css/**/*.css'
],
dest: 'build/'
}]
}
},
cssmin: {
build: {
expand: true,
cwd: 'build/css/',
src: ['*.css', '!*.min.css'],
dest: 'build/css/',
ext: '.min.css'
}
},
uglify: {
build: {
expand: true,
cwd: 'build/js/',
src: ['*.js', '!*.min.js'],
dest: 'build/js/'
}
},
// https://github.com/vojtajina/grunt-bump
// bump version of app
bump: {
options: {
files: ['package.json', 'bower.json'],
updateConfigs: [],
commit: true,
commitMessage: 'Release v%VERSION%',
commitFiles: ['package.json', 'bower.json'], // '-a' for all files
createTag: true,
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: true,
pushTo: 'origin'
}
},
// https://github.com/tschaub/grunt-gh-pages
// deploy build/ folder to gh-pages branch
'gh-pages': {
options: {
base: 'build'
},
build: {
src: ['**/*']
}
}
});
// Default task(s).
grunt.registerTask('default', ['watch']);
grunt.registerTask('build', ['jshint', 'clean', 'sass', 'cssmin', 'copy:build', 'uglify']);
grunt.registerTask('serve', ['sass', 'connect:src', 'watch']);
grunt.registerTask('deploy', ['build', 'gh-pages', 'clean']);
};