-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
436 lines (390 loc) · 14 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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/*jshint forin: true */
module.exports = function (grunt) {
"use strict";
var os = require('os'),
projectConfig = grunt.file.readJSON('project-config.json'),
productionEnabled = false,
basePathReplace = 'CDN_BASEPATH',
basePath = projectConfig.urls.basePathLocal,
noCacheReplace = 'NO_CACHE_VAR';
grunt.initConfig({
clean: {
built: ['deploy/**']
},
sprite: projectConfig.sprites,
imagemin: { // Task
static: { // Target
options: { // Target options
optimizationLevel: 3,
svgoPlugins: [{ removeViewBox: false }]
},
files: [{
expand: true,
cwd: 'deploy/assets/images/',
src: ['**/*.{png,jpg,gif,svg}'],
dest: 'deploy/assets/images/'
}]
}
},
htmlclean: {
deploy: {
expand: true,
cwd: 'deploy/',
src: ['**/*.html', '!_*.*'],
dest: 'deploy/'
}
},
stylus: {
main: {
files: projectConfig.stylus.files,
options: {
compress: projectConfig.stylus.compress,
sourcemap: {
inline: true
}
}
}
},
uglify: {
main: {
options: {
beautify: projectConfig.uglify.beautify,
sourceMap: projectConfig.uglify.sourceMap,
compress: {
drop_console: projectConfig.uglify.dropConsole
}
},
files: projectConfig.uglify.files
}
},
replace: {
main: {
src: ['deploy/**/*.html', 'deploy/**/*.json', 'deploy/**/*.css', 'deploy/**/*.js'],
overwrite: true,
replacements: [
{
from: basePathReplace,
to: projectConfig.urls.basePathLocal
},
{
from: noCacheReplace,
to: (new Date()).getTime()
},
{
from: '{{{site_title}}}',
to: projectConfig.urls.title
}
]
}
},
jslint: {
client: {
src: [
'Gruntfile.js',
'sources/assets/scripts/**/*.js',
((projectConfig.jslint.mainEnabled === true) ? '' : '!') + 'sources/assets/scripts/main.js',
'!sources/assets/scripts/plugins/**/*.js'
],
directives: {
indent: 4,
nomen: true,
regexp: true,
predef: [
'require',
'module',
'jQuery',
'window',
'document',
'console',
'YT',
'setInterval',
'clearInterval'
]
},
options: {
regexp: false,
failOnError: true,
forin: true
}
}
},
copy: {
css: {
files: [
{
expand: true,
cwd: 'sources/assets/css/',
src: ['**/*.css'],
dest: 'deploy/assets/css/'
}
]
},
scripts: {
files: [
{
expand: true,
cwd: 'sources/assets/scripts/',
src: ['**/*.*', '!main.js'],
dest: 'deploy/assets/scripts/'
}
]
},
fonts: {
files: [
{
expand: true,
cwd: 'sources/assets/fonts/',
src: ['*.*', '**/*.*'],
dest: 'deploy/assets/fonts/'
}
]
},
images: {
files: [
{
expand: true,
cwd: 'sources/assets/images/',
src: ['**/*.*', '!sprite*/*.*'],
dest: 'deploy/assets/images/'
}
]
},
otherAssets: {
files: [
{
expand: true,
cwd: 'sources/assets/',
src: ['**/*.*', '!css/**/*.*', '!scripts/**/*.*', '!fonts/**/*.*', '!images/**/*.*'],
dest: 'deploy/assets/'
}
]
},
html: {
files: [
{
expand: true,
cwd: 'sources/site/',
src: ['**/*.*', '!_*.html'],
dest: 'deploy/'
}
]
}
},
notify: {
watch: {
options: {
title: 'Watch Completed!',
message: 'Waiting for more changes...'
}
}
},
watch: {
options: {
dateFormat: function () {
grunt.task.run(['notify']);
}
},
sprite: {
files: (function () {
var i,
arr = [];
for (i in projectConfig.sprites) {
if (projectConfig.sprites.hasOwnProperty(i)) {
arr.push(projectConfig.sprites[i].src);
}
}
if (arr.length === 0) {
return 'sources/assets/images/sprite/**/*.png';
}
return arr;
}()),
tasks: ['sprite', 'stylus', 'replace'],
options: {
spawn: false
}
},
scripts: {
files: ['Gruntfile.js', 'sources/assets/scripts/**/*.js'],
tasks: ['jslint', 'uglify', 'copy:scripts', 'replace'],
options: {
spawn: false
}
},
css: {
files: ['sources/assets/css/**/*.styl', 'sources/assets/css/**/*.css'],
tasks: ['stylus', 'replace', 'copy:css'],
options: {
spawn: false
}
},
fonts: {
files: ['sources/assets/fonts/**/*.*'],
tasks: ['copy:fonts'],
options: {
spawn: false
}
},
images: {
files: ['sources/assets/images/**/*.*'],
tasks: ['copy:images'],
options: {
spawn: false
}
},
html: {
files: ['sources/site/**/*.*'],
tasks: ['copy:html', 'apply-templates:' + projectConfig.urls.basePathLocal, 'replace'],
options: {
spawn: false
}
}
}
});
// Load all dependences needed
require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks);
function replaceStr(str, f, r) {
if (str && f && r) {
return str.split(f).join(r);
}
return str;
}
function applyTemplate(fileObject) {
var html = grunt.file.read('sources/site/' + fileObject.file),
i,
total = projectConfig.templateFiles.length,
replaceObj;
// Apply templates or code's include when needed
for (i = 0; i < total; i = i + 1) {
html = replaceStr(html, '{{{' + projectConfig.templateFiles[i] + '}}}', grunt.file.read(projectConfig.templateFiles[i]));
}
// Replace {{{any ...}}} per object's array registers on page object at project-config.json
if (fileObject.replace && fileObject.replace.length > 0) {
total = fileObject.replace.length;
for (i = 0; i < total; i = i + 1) {
replaceObj = fileObject.replace[i];
html = replaceStr(html, '{{{' + replaceObj.find + '}}}', replaceObj.replace);
}
}
// production url
html = replaceStr(html, '{{{baseUrlProduction}}}', projectConfig.urls.baseUrlProduction);
if (fileObject.title) {
// Replace page title to page title setted on project-config.json
html = replaceStr(html, '{{{site_title}}}', fileObject.title);
} else {
// Replace page title to project title setted on project-config.json
html = replaceStr(html, '{{{site_title}}}', projectConfig.title);
}
// Remove {{{any ...}}} unused.
html = html.replace(/\{{3,3}[^\{\}]+\}{3,3}/g, '');
// If executing this function on production mode, run the htmlclean command.
if (productionEnabled === true) {
grunt.task.run('htmlclean');
}
// Write the file with the path of fileObject.file
grunt.file.write('deploy/' + fileObject.file, html);
}
/* Apply templates pushed to array "toApplyTemplate" setted on package.json
* $ grunt apply-templates
*/
grunt.registerTask('apply-templates', 'Apply templates pushed to array "toApplyTemplate" setted on package.json with custom basePath', function () {
var i,
total = projectConfig.toApplyTemplate.length;
for (i = 0; i < total; i = i + 1) {
applyTemplate(projectConfig.toApplyTemplate[i]);
}
});
/* Build the project with local basepath setted on package.json
* $ grunt deploy
*
* Build project with a custom url basepath
* $ grunt deploy:http://custom-url-basepath
*/
grunt.registerTask('deploy', 'Build the project with local basepath setted on package.json', function (newBasePath) {
var tasks = [],
gruntConfig = {},
i,
total;
tasks = [
'clean',
'sprite',
'jslint',
'uglify',
'stylus',
'copy',
'apply-templates',
'replace'
];
basePath = this.args.join(':');
// When the basePath is empty, get the local basepath setted on package.json
if (basePath.length === 0) {
basePath = projectConfig.urls.basePathLocal;
}
// Change setup to production default
if (productionEnabled === true) {
// uglify
projectConfig.uglify.beautify = false;
projectConfig.uglify.sourceMap = true;
projectConfig.uglify.dropConsole = true;
// stylus
projectConfig.stylus.compress = true;
// imagemin
tasks.push('imagemin');
}
// jslint
gruntConfig.jslint = grunt.config('jslint');
if (projectConfig.jslint.mainEnabled === false) {
gruntConfig.jslint.client.src.push('!sources/assets/scripts/main.js');
grunt.config('jslint', gruntConfig.jslint);
}
// uglify
grunt.config('uglify.main.options.beautify', projectConfig.uglify.beautify);
grunt.config('uglify.main.options.sourceMap', projectConfig.uglify.sourceMap);
grunt.config('uglify.main.options.compress.drop_console', projectConfig.uglify.dropConsole);
// sprite
grunt.config('sprite', projectConfig.sprites);
// stylus
grunt.config('stylus.main.options.compress', projectConfig.stylus.compress);
// copy
gruntConfig.copy = grunt.config('copy');
total = projectConfig.toApplyTemplate.length;
for (i = 0; i < total; i = i + 1) {
gruntConfig.copy.html.files[0].src.push('!' + projectConfig.toApplyTemplate[i].file);
}
grunt.config('copy', gruntConfig.copy);
// replace
gruntConfig.replace = grunt.config('replace');
gruntConfig.replace.main.replacements[0] = {
from: basePathReplace,
to: basePath
};
grunt.config('replace', gruntConfig.replace);
grunt.task.run(tasks);
return newBasePath;
});
/* Build the project with the local basepath and initialize the watch task
* $ grunt w
*/
grunt.registerTask('w', ['deploy', 'watch']);
/* Build the project with a production setup and a custom basepath
* $ grunt production:http://cdn.htmltemplate.com.br
*
*/
grunt.registerTask('production', 'Build the project with a production configs.', function (newBasePath) {
productionEnabled = true;
grunt.task.run(['deploy:' + this.args.join(':')]);
return newBasePath;
});
/* Build the project with a production local ip address.
* That is useful to test the project in the smartphones for example.
* $ grunt my-ip
*
* When this task not recognize your ip address, you can make this:
* $ grunt deploy:http://your-address-ip/html-template/deploy
*/
grunt.registerTask('my-ip', '', function () {
// console.log(os.networkInterfaces());
var ip = os.networkInterfaces().en1[1].address,
newBasePath = projectConfig.urls.basePathLocal.split('localhost').join(ip);
grunt.task.run(['deploy:' + newBasePath]);
});
};