-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
35 lines (32 loc) · 994 Bytes
/
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
var path = require("path");
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-gitbook');
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.initConfig({
'gitbook': {
development: {
output: path.join(__dirname, ".grunt/gitbook"),
input: "./",
title: "How to Make a Computer Operating System in C++",
description: "Online book about how to write a computer operating system in C/C++ from scratch",
github: "SamyPesse/How-to-Make-a-Computer-Operating-System"
}
},
'gh-pages': {
options: {
base: '.grunt/gitbook'
},
src: ['**']
},
'clean': {
files: '.grunt'
}
});
grunt.registerTask('publish', [
'gitbook',
'gh-pages',
'clean'
]);
grunt.registerTask('default', 'gitbook');
};