-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
77 lines (68 loc) · 1.9 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
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
site: grunt.file.readYAML('src/data/site.yml'),
assemble: {
// Task-level options
options: {
prettify: {indent: 2},
marked: {sanitize: false},
production: true,
data: 'src/**/*.{json,yml}',
assets: '<%= site.destination %>/assets',
helpers: 'src/helpers/helper-*.js',
layoutdir: 'src/templates/layouts',
partials: ['src/templates/includes/**/*.hbs'],
},
site: {
// Target-level options
options: {layout: 'default.hbs'},
files: [
{ expand: true, cwd: 'src/templates/pages', src: ['*.hbs'], dest: '<%= site.destination %>/' }
]
}
},
connect: {
server: {
options: {
port: 80,
base: '<%= site.destination %>'
}
}
},
watch: {
files: ['src/**/*', 'assets/**/*'],
tasks: ['default']
},
// Before generating any new files,
// remove any previously-created files.
clean: {
all: ['<%= site.destination %>/**/*.{html,md}']
},
copy: {
main: {
files:[
{src: ['assets/**'], dest: '<%= site.destination %>/'},
]
}
},
'gh-pages': {
options: {
base: '<%= site.destination %>'
},
src: ['**/*']
}
});
// Load npm plugins to provide necessary tasks.
grunt.loadNpmTasks('assemble');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-copy');
// Default task to be run.
grunt.registerTask('server', ['default', 'connect', 'watch']);
grunt.registerTask('default', ['clean', 'assemble', 'copy']);
grunt.registerTask('publish', ['default', 'gh-pages']);
};