-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gruntfile.js
59 lines (55 loc) · 1.65 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
module.exports = function (grunt) {
'use strict';
var date = (new Date()).valueOf().toString();
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
assemble: {
options: {
layout: "",
flatten: true,
helpers: ['./helpers/*.js'],
partials: ['views/partials/*.hbs'],
data: './routes/seo.json'
},
pages: {
files: {
'build/': ['views/pages/*.html']
}
}
},
clean: {
all: ['build/**/*.*', '!.htaccess']
},
copy: {
main: {
files: [{
expand: true,
cwd: 'public/',
src: ['**'],
dest: 'build/'
}]
}
},
replace: {
build_replace: {
options: {
patterns: [{
match: /(href|src)="([^"]+)"/g,
replacement: function (href) {
return href.replace(/(\.css|\.ico|\.js|\.jpg|\.png|\.gif|\.pdf)/, '.' + date + '$1');
}
}]
},
files: [{
src: ['build/*'],
dest: './'
}]
}
}
});
grunt.loadNpmTasks('assemble');
grunt.loadNpmTasks('grunt-replace');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('build', ['clean', 'assemble', 'copy', 'replace']);
};