This repository was archived by the owner on Jan 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathGruntfile.js
More file actions
71 lines (67 loc) · 1.36 KB
/
Gruntfile.js
File metadata and controls
71 lines (67 loc) · 1.36 KB
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
var path = require("path");
module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-gitbook');
grunt.loadNpmTasks('grunt-gh-pages');
grunt.loadNpmTasks('grunt-contrib-clean');
var TEST_PORT = grunt.option('testPort') || 8000;
require('load-grunt-tasks')(grunt);
grunt.initConfig({
'gitbook': {
development: {
input: "./",
github: "maidsafe/systemdocs"
}
},
'gh-pages': {
options: {
base: '_book'
},
src: ['**']
},
'clean': {
files: ['.grunt' , '_book']
},
'connect': {
serve: {
options: {
port: TEST_PORT,
base: [
'./_book'
]
}
}
},
'link-checker': {
options: {
maxConcurrency: 20,
noFragment: true
},
dev: {
site: 'localhost',
options: {
initialPort: TEST_PORT,
callback: function(crawler) {
crawler.supportedMimeTypes = [
/^text\//i,
/^application\/(rss|html|xhtml)?[\+\/\-]?xml/i,
/^xml/i
];
}
}
}
}
});
/*grunt.registerTask('publish', [
'gitbook',
'gh-pages',
'clean'
]);*/
grunt.registerTask('default', [
'gitbook'
]);
grunt.registerTask('test', [
'default',
'connect:serve',
'link-checker'
]);
};