-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGruntfile.js
167 lines (134 loc) · 3.49 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
module.exports = function (grunt) {
'use strict';
var opn = require('opn');
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')
};
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 (the default task)
* grunt serve : watch js & scss and run a local server
* grunt start : Opens the post-install setup checklist on the Kickoff site
* 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 and html validator
========================================================================== */
/**
* GRUNT * Alias for 'serve' task, below
*/
grunt.registerTask('default', ['serve']);
/**
* GRUNT SERVE * A task for for a static server with a watch
* run browserSync and watch
*/
grunt.registerTask('serve', [
'clean:all',
'shimly',
'browserify:prod',
'sass',
'autoprefixer',
'clean:tempCSS',
'copy',
'icons',
'imagemin:images',
'assemble',
'browserSync:serve',
'watch'
]);
/**
* GRUNT START
* Opens the post-install setup checklist on the Kickoff site
*/
grunt.registerTask('start', function() {
opn('http://trykickoff.github.io/learn/checklist.html');
});
/**
* GRUNT DEV * A task for development
* run browserify, sass:kickoff & autoprefixer:kickoff
*/
grunt.registerTask('dev', [
'clean:all',
'shimly',
'browserify:dev',
'sass',
'autoprefixer',
'clean:tempCSS',
'icons',
'imagemin:images',
'copy',
'assemble'
]);
/**
* GRUNT DEPLOY * A task for your production environment
* run browserify, sass:kickoff, autoprefixer:dist and csso
*/
grunt.registerTask('deploy', [
'clean:all',
'assemble',
'shimly',
'newer:browserify:prod',
'newer:sass',
'newer:autoprefixer',
'newer:csso',
'clean:tempCSS',
'icons',
'imagemin:images',
'copy:statix'
]);
/**
* GRUNT STYLEGUIDE * A task for the styleguide
* run browserify, sass:kickoff, sass:styleguide, autoprefixer:dist, autoprefixer:styleguide, connect:styleguide & watch
*/
grunt.registerTask('styleguide', [
'shimly',
'browserify:prod',
'sass',
'autoprefixer',
'clean:tempCSS',
'icons',
'imagemin:images',
'browserSync:styleguide',
'watch'
]);
/**
* GRUNT ICONS * A task to create all icons using grunticon
* run clean, svgmin and grunticon
*/
grunt.registerTask('icons', [
'clean:icons',
'imagemin:grunticon',
'grunticon'
]);
/**
* 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'
]);
};