-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
77 lines (64 loc) · 1.66 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
/* global module:false */
module.exports = function(grunt) {
var port = grunt.option('port') || 8000;
// Project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
// SUBTASK: sass theme changes
sass: {
main: {
files: {
'css/styles.css': 'css/styles.scss'
}
}
},
// SUBTASK: copy stuff around
copy: {
css: {
files: [
{ src: ['_site/css/styles.css'], dest: 'css/styles.css', flatten: true }
]
}
},
// SUBTASK: build jekyll site
jekyll: {
options: { // Universal options
serve: true,
watch: true
},
dist: { // Target
options: { // Target options
config: '_config.yml'
}
}
},
// SUBTASK: watch for changes to auto-run subtasks
watch: {
main: {
files: [ 'Gruntfile.js', 'js/reveal.js', 'css/styles.scss' ],
tasks: 'default'
},
presentation: {
files: [ '_data/presentation.yml', 'presentation/**/*.md' ],
tasks: 'jekyll:dist'
},
theme: {
files: [ 'css/*.scss', '_sass/*.scss' ],
tasks: 'themes'
}
}
});
// Dependencies
grunt.loadNpmTasks( 'grunt-jekyll' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-contrib-sass' );
grunt.loadNpmTasks( 'grunt-contrib-connect' );
grunt.loadNpmTasks( 'grunt-contrib-copy' )
grunt.loadNpmTasks( 'grunt-zip' );
// Default task
grunt.registerTask( 'default', [ 'jekyll', 'watch' ] );
// Serve website locally with change watchers
//grunt.registerTask( 'watch', [] );
// Serve website locally
//grunt.registerTask( 'serve', []);
};