-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgruntfile.js
More file actions
executable file
·269 lines (244 loc) · 7.86 KB
/
Copy pathgruntfile.js
File metadata and controls
executable file
·269 lines (244 loc) · 7.86 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
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
module.exports = function (grunt) {
'use strict';
// Force use of Unix newlines
grunt.util.linefeed = '\n';
var fs = require('fs');
var path = require('path');
// Project configuration.
grunt.initConfig({
// Metadata loading
pkg: grunt.file.readJSON('package.json'),
site: 'site',
target: '_gh_pages',
// CLEAN UP
clean: {
target: '<%= target %>',
validationLogs: 'logs/validation',
testLogs: 'logs/karma'
},
//
// LESS / CSS TASKS
//
// Compile LESS to CSS
less: {
site: {
options: {
strictMath: true,
sourceMap: true,
outputSourceFiles: true,
sourceMapURL: '<%= pkg.name %>.css.map',
sourceMapFilename: '<%= site %>/assets/css/<%= pkg.name %>.css.map'
},
src: 'less/<%= pkg.name %>.less',
dest: '<%= site %>/assets/css/<%= pkg.name %>.css'
}
},
// Add prefix support for older browsers before tags met standards
autoprefixer: {
options: {
browsers: ['last 2 versions']
},
site: {
options: {
map: true
},
src: '<%= less.site.dest %>'
}
},
// Tidy up CSS output (order of attributes etc)
csscomb: {
options: {
config: 'less/.csscomb.json'
},
site: {
expand: true,
cwd: '<%= site %>/assets/css/',
src: ['*.css', '!*.min.css'],
dest: '<%= site %>/assets/css/'
}
},
// Minify CSS
cssmin: {
options: {
compatibility: 'ie8',
keepSpecialComments: '*',
advanced: false
},
site: {
src: '<%= less.site.dest %>',
dest: '<%= less.site.dest %>'
}
},
// Check CSS formatting
csslint: {
options: {
csslintrc: 'less/.csslintrc'
},
site: [
'<%= less.site.dest %>'
]
},
//
// JS TASKS
//
// Check JS formatting
jshint: {
options: {
jshintrc: 'javascript/.jshintrc'
},
site: {
src: 'javascript/*.js'
}
},
// Check JS style
jscs: {
options: {
config: 'javascript/.jscsrc'
},
site: {
src: '<%= jshint.site.src %>'
}
},
// Run JS tests
karma: {
unit: {
plugins: [
'karma-jasmine',
'karma-phantomjs-launcher',
'karma-coverage',
'karma-spec-reporter'
],
basePath: '.',
frameworks: ['jasmine'],
files: [
{src: ['bower_components/angular/angular.js'], watched: false},
{src: ['bower_components/angular-mocks/angular-mocks.js'], watched: false},
{src: ['bower_components/angular-bootstrap/angular-bootstrap.js'], watched: false},
{src: ['javascript/src/**/*.js']},
{src: ['javascript/tests/**/*.spec.js']}
],
browsers: ['PhantomJS'],
logLevel: 'INFO',
runnerPort: 9999,
singleRun: true,
reporters: ['spec', 'coverage'],
preprocessors: {'javascript/src/**/*.js': ['coverage']},
coverageReporter: {
type: 'lcov',
dir: '<%= clean.testLogs %>'
}
}
},
// Create joined up JS file
concat: {
site: {
src: ['javascript/src/**/*.js'],
dest: '<%= site %>/assets/js/<%= pkg.name %>.js'
}
},
// Minification of JS
uglify: {
options: {
preserveComments: 'some'
},
site: {
src: '<%= concat.site.dest %>',
dest: '<%= concat.site.dest %>'
}
},
//
// DOCUMENTATION TASKS
//
// Build documentation with jekyll
jekyll: {
options: {
config: '_config.yml'
},
build: {
options: {
raw: 'github: true'
}
}
},
// Validate HTML of jekyll site
validation: {
options: {
charset: 'utf-8',
doctype: 'HTML5',
failHard: true,
reset: true,
path: '<%= clean.validationLogs %>/status.json',
reportpath: '<%= clean.validationLogs %>/report.json',
relaxerror: [
'Attribute layout not allowed on element body at this point.',
'Attribute layout not allowed on element div at this point.',
'Attribute flex not allowed on element div at this point.',
'Element md-toolbar not allowed as child of element div in this context.',
'Element md-content not allowed as child of element div in this context.',
'This interface to HTML5 document checking is deprecated.'
]
},
files: {
src: '<%= target %>/**/*.html'
}
},
copy: {
dist: {
expand: true,
filter: 'isFile',
cwd: '<%= site %>/assets',
src: '*/*',
dest: '<%= target %>/assets/'
}
},
connect: {
server: {
options: {
port: 1337,
base: '_gh_pages',
livereload: true
}
}
},
watch: {
script: {
files: ['javascript/<%= pkg.name %>.js', 'javascript/src/**/*.js'],
tasks: ['js-compile', 'copy'],
options: {
livereload: true
}
},
css: {
files: 'less/**/*.less',
tasks: ['css-compile', 'copy'],
options: {
livereload: true
}
},
templates: {
files: ['site/**/*.html', 'site/**/*.md'],
tasks: ['jekyll:build', 'copy'],
options: {
livereload: true
}
}
}
});
// Load grunt plugins
require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
require('time-grunt')(grunt);
// JS distribution tasks
grunt.registerTask('js-compile', ['jshint', 'jscs', 'concat']);
grunt.registerTask('js-dist', ['js-compile', 'uglify']);
// CSS distribution task
grunt.registerTask('css-compile', ['less', 'autoprefixer', 'csscomb']);
grunt.registerTask('css-dist', ['css-compile', 'cssmin']);
// Distribution tasks
grunt.registerTask('test', ['clean:testLogs', 'karma']);
grunt.registerTask('docs', ['jekyll:build', 'clean:validationLogs', 'validation']);
grunt.registerTask('assets', ['js-dist', 'css-dist', 'copy']);
// Full execution
grunt.registerTask('build', ['clean:target', 'test', 'docs', 'assets']);
grunt.registerTask('run', ['jekyll:build', 'js-compile', 'css-compile', 'copy', 'connect:server', 'watch']);
grunt.registerTask('default', ['build']);
};