forked from sb2nov/mac-setup
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
executable file
·56 lines (50 loc) · 1.42 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
var path = require("path");
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-gitbook');
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-http-server');
grunt.initConfig({
'gitbook': {
development: {
output: path.join(__dirname, ".grunt/gitbook"),
input: "./",
title: "Mac OS X Setup Guide",
description: "Guide to setting up developer environment on OS X",
github: "sb2nov/mac-setup"
}
},
'gh-pages': {
options: {
base: '.grunt/gitbook'
},
src: ['**']
},
'clean': {
files: '.grunt'
},
'http-server': {
'dev': {
// the server root directory
root: '.grunt/gitbook',
port: 4000,
host: "127.0.0.1",
showDir : true,
autoIndex: true,
defaultExt: "html",
//wait or not for the process to finish
runInBackground: false
}
}
});
grunt.registerTask('test', [
'gitbook',
'http-server'
]);
grunt.registerTask('publish', [
'gitbook',
'gh-pages',
'clean'
]);
grunt.registerTask('default', 'gitbook');
};