-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntFile.js
335 lines (315 loc) · 6.4 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
'use strict';
module.exports = function (grunt) {
// NPM module that loads all tasks of type grunt-
require('load-grunt-tasks')(grunt);
var pkg = grunt.file.readJSON('package.json');
grunt.initConfig({
/**
* Basic info of our app
* ###########################################################
*/
pkg: pkg,
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n' + ' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>;\n' + ' * Licensed <%= pkg.licenses %>\n */\n',
distDir: 'dist',
src: {
js: ['src/**/*.js'],
specs: ['test/**/*.spec.js'],
scss: ['src/styles/scss/**/*.scss'],
css: ['src/styles/css/**/*.css'],
html: ['src/**/*.html']
},
/**
* Build Tasks
* ###########################################################
*/
/**
* General tasks
* ------------------------------------------------------------------
*/
/**
* clean
* Delete any unnecessary files from dist folder
* Also delete any generated directories (like coverage, .sass-cache)
*/
clean: {
css: {
src: '<%= distDir %>/app.css'
},
compass: {
src: '.sass-cache'
},
index: {
src: '<%= distDir %>/index.html'
},
js: {
src: '<%= distDir %>/app.js'
},
other: {
src: ['docs', 'report']
}
},
/**
* concat
* Concatenate all js files into one and all css files into one.
*/
concat: {
options: {
stripBanners: true,
separator: ';'
},
js: {
src: 'src/**/*.js',
dest: '<%= distDir %>/app.js'
},
index: {
src: 'src/index.html',
dest: '<%= distDir %>/index.html'
},
css: {
options: {
separator: ''
},
src: ['src/styles/css/**/*.css', 'src/assets/fonts/**/*.css'],
dest: '<%= distDir %>/app.css'
}
},
/**
* useminPrepare
* Find the tagged blocks in index.html in order to be replaced
* with their minified versions in the usemin task
*/
useminPrepare: {
html: '<%= distDir %>/index.html'
},
/**
* usemin
* Replace the references of non-minified files tagged in the useminPrepare task
* with their minified versions
*/
usemin: {
html: ['<%= distDir %>/**/*.html'],
css: ['<%= distDir %>/**/*.css'],
options: {
basedir: '../',
dirs: ['<%= distDir %>']
}
},
/**
* CSS tasks
* ------------------------------------------------------------------
*/
/**
* compass
* Compiles SCSS files into CSS files
*/
compass: {
dev: {
options: {
config: 'src/styles/config.rb'
}
},
clean: {
options: {
clean: true
}
}
},
/**
* cssmin
* Minifies the concatenated file of css in the dist folder
*/
cssmin: {
options: {
banner: '<%= banner %>'
},
minify: {
expand: true,
cwd: '<%= distDir %>/',
src: ['*.css', '!*.min.css'],
dest: '<%= distDir %>/',
ext: '.min.css'
}
},
/**
* JS tasks
* ------------------------------------------------------------------
*/
/**
* html2js
* Convert angular partial html templates into a js module
*/
html2js: {
options: {
module: 'templates',
quoteChar: '\'',
indentString: ' ',
useStrict: true
},
main: {
src: 'src/**/*.view.html',
dest: 'src/app/templates.js'
}
},
/**
* jshint
* Apply lint rules into the js code
*/
jshint: {
options: {
jshintrc: '.jshintrc',
ignores: ['src/app/templates.js']
},
files: ['gruntFile.js', '<%= src.js %>', '<%= src.specs %>']
},
/**
* karma
* Use karma test runner to run unit tests for angular
*/
karma: {
unit: {
configFile: 'test/config/karma.conf.js',
background: true
},
build: {
configFile: 'test/config/karma.conf.js',
singleRun: true
}
},
/**
* uglify
* Minify concatenated js file of dist directory
*/
uglify: {
options: {
banner: '<%= banner %>',
mangle: true
},
js: {
src: '<%= distDir %>/app.js',
dest: '<%= distDir %>/app.min.js'
}
},
/**
* Reports and Docs
* ------------------------------------------------------------------
*/
/**
* coverage
* Creates test coverage report and validates against pre-set thresholds
*/
coverage: {
options: {
thresholds: {
statements: 90,
branches: 100,
functions: 90,
lines: 90
},
dir: 'report/coverage'
}
},
/**
* ngdocs
* Generates documentation from comments according to the Angular way
* (based on jsDoc)
*/
ngdocs: {
options: {
html5Mode: false
},
all: ['<%= src.js %>']
},
/**
* plato
* Use plato util to generate static analysis report for our code
*/
plato: {
scripts: {
files: {
'report/plato': ['<%= src.js %>', '<%= src.specs %>']
}
}
},
/**
* LiveReload Tasks
* ###########################################################
*/
/**
* connect
* Use connect middleware to set up a web server for livereload
*/
connect: {
server: {
options: {
port: pkg.connectServerPort,
hostname: '*',
base: 'dist',
keepalive: true,
livereload: true,
open: true
}
}
},
/**
* watch
* Watch the files for any change and apply the corresponding grunt task
* according to the type of the file.
* Example, if a scss file changes run compass and clean(to remove .sass-cache)
*/
watch: {
options: {
livereload: '<%= connect.server.options.livereload %>'
},
js: {
files: ['<%= src.js %>', '<%= src.specs %>'],
tasks: ['clean:js', 'clean:other', 'jshint', 'concat:js', 'karma:unit:run']
},
scss: {
files: ['<%= src.scss %>'],
tasks: ['compass:dev', 'clean:compass']
},
css: {
files: ['<%= src.css %>'],
tasks: ['clean:css', 'concat:css']
},
html: {
files: ['<%= src.html %>'],
tasks: ['clean:index', 'html2js', 'concat:index']
}
}
});
/**
* Our Tasks
* ###########################################################
*/
grunt.registerTask('develop', [
'clean',
'compass',
'html2js',
'concat',
'jshint',
'watch'
]);
grunt.registerTask('test', [
'clean:other'
]);
grunt.registerTask('server', ['connect:server']);
grunt.registerTask('report', [
'clean:other',
'ngdocs',
'plato'
]);
grunt.registerTask('build', [
'clean',
'compass',
'jshint',
'useminPrepare',
'html2js',
'concat',
'cssmin',
'uglify',
'usemin',
'ngdocs',
'plato'
]);
};