-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
157 lines (128 loc) · 2.92 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
module.exports = function (grunt) {
'use strict';
var options = {
pkg: require('./package'), // <%=pkg.name%>
site: grunt.file.readYAML('statix/src/data/site.yml'),
// Global Grunt vars. Edit this file to change vars
config : require('./_grunt-configs/config.js')
};
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt, {pattern: ["grunt-*", "chotto", "assemble"]});
// Load grunt configurations automatically
var configs = require('load-grunt-configs')(grunt, options);
// Define the configuration for all the tasks
grunt.initConfig(configs);
/**
* Available tasks:
* grunt : Alias for 'serve' task, below
* grunt serve : watch js, images & scss and run a local server
* grunt watch : run sass:kickoff, uglify and livereload
* grunt dev : run uglify, sass:kickoff & autoprefixer:kickoff
* grunt deploy : run jshint, uglify, sass:kickoff and csso
* grunt styleguide : watch js & scss, run a local server for editing the styleguide
* grunt icons : generate the icons. uses svgmin and grunticon
* grunt checks : run jshint & scsslint
*/
/**
* GRUNT * Alias for 'serve' task, below
*/
grunt.registerTask('default', ['serve']);
/**
* GRUNT SERVE * A task for a static server with a watch
* run browserSync and watch
*/
grunt.registerTask('serve', [
'clean:all',
'shimly',
'compileJS',
'compileCSS',
'images',
'clean:temp',
'copy',
'assemble',
'browserSync:serve',
'watch'
]);
/**
* GRUNT DEV * A task for development
* run uglify, sass:kickoff & autoprefixer:kickoff
*/
grunt.registerTask('dev', [
'clean:all',
'shimly',
'compileJS',
'compileCSS',
'images',
'clean:temp',
'copy',
'assemble'
]);
/**
* GRUNT DEPLOY * A task for your production environment
* run jshint, uglify and sass:production
*/
grunt.registerTask('deploy', [
'clean:all',
'shimly',
'compileJS',
'compileCSS',
'csso',
'images',
'clean:temp',
'copy',
'assemble'
]);
/**
* GRUNT STYLEGUIDE * A task to view the styleguide
*/
grunt.registerTask('styleguide', [
'clean:all',
'shimly',
'compileJS',
'compileCSS',
'images',
'clean:temp',
'copy',
'assemble',
'browserSync:styleguide',
'watch'
]);
/**
* GRUNT IMAGES * A task to compress all non-grunticon images
*/
grunt.registerTask('images', [
'imagemin:images',
'icons'
]);
/**
* GRUNT ICONS * A task to create all icons using grunticon
* run clean, svgmin and grunticon
*/
grunt.registerTask('icons', [
'clean:icons',
'imagemin:grunticon',
'grunticon',
'clean:temp'
]);
/**
* GRUNT CHECKS * Check code for errors
* run jshint
*/
grunt.registerTask('checks', [
'jshint:project',
'scsslint',
'validation'
]);
/**
* Utility tasks
*/
// Compile JS
grunt.registerTask('compileJS', [
'browserify:dev'
]);
// Compile CSS
grunt.registerTask('compileCSS', [
'sass',
'autoprefixer'
]);
};