-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
66 lines (53 loc) · 1.3 KB
/
Gruntfile.js
File metadata and controls
66 lines (53 loc) · 1.3 KB
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
module.exports = function (grunt) {
'use strict';
require('time-grunt')(grunt);
// jit-grunt with static mappings
require('jit-grunt')(grunt, {
useminPrepare: 'grunt-usemin',
includereplace: 'grunt-include-replace',
replace: 'grunt-text-replace',
validation: 'grunt-html-validation',
});
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// Configs
xh: {
src: 'src',
dist: 'dist',
tmp: '.tmp',
usemin: ['{head,scripts}.html'],
root: __dirname,
includes: '<%= xh.src %>/includes',
images: '{img,media}',
assets: '{img,media,fonts}'
}
});
// Load per-task config from separate files.
grunt.loadTasks('grunt');
grunt.registerTask('validate', [
'validation',
'notify:validation'
]);
grunt.registerTask('qa', 'Assure quality', [
'build',
'validate',
'jshint'
]);
grunt.registerTask('build', 'Build site files', [
'clean:dist',
'build-usemin-min',
'build-html',
'build-css',
'build-js',
'build-assets',
'build-beautify',
'clean:tmp',
'notify:build'
]);
grunt.registerTask('dev', 'Start a live-reloading dev webserver on localhost', [,
'build-usemin',
'watch'
]);
grunt.registerTask('default', ['dev']);
};