forked from 3drobotics/solodevguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
128 lines (119 loc) · 3.02 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
module.exports = function (grunt) {
var path = require("path");
// Load NPM tasks
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks("grunt-bower-install-simple");
grunt.loadNpmTasks('grunt-link-checker');
grunt.loadNpmTasks('grunt-gitbook');
grunt.loadNpmTasks('grunt-http-server');
// Init GRUNT configuraton
grunt.initConfig({
'bower-install-simple': {
options: {
color: true,
production: false,
directory: "theme/vendors"
}
},
'http-server': {
'check': {
root: 'book/_book',
port: '4000',
runInBackground: true,
},
'dev': {
root: 'book/_book',
port: '4000',
},
},
linkChecker: {
gitbook: {
site: 'localhost',
options: {
maxConcurrency: 20,
initialPort: 4000,
supportedMimeTypes: [/html/i],
callback: function (crawler) {
crawler.addFetchCondition(function(url) {
return !url.path.match(/\/website\//);
});
}
}
}
},
less: {
development: {
options: {
compress: true,
yuicompress: true,
optimization: 2
},
files: {
"theme/assets/style.css": "theme/stylesheets/website.less",
"theme/assets/print.css": "theme/stylesheets/ebook.less"
}
}
},
copy: {
vendors: {
files: [
{
expand: true,
cwd: 'theme/vendors/fontawesome/fonts/',
src: ['**'],
dest: 'theme/assets/fonts/fontawesome/',
filter: 'isFile'
}
]
}
}
});
grunt.registerTask("bower-install", [ "bower-install-simple" ]);
// Build
grunt.registerTask('build', [
'bower-install',
'less'
]);
grunt.registerTask('default', [
'build'
]);
grunt.registerTask('gitbook', 'Runs gitbook.', function (mode) {
var done = this.async();
var spawn = require('child_process').spawn;
var p = spawn('gitbook', ['build', 'book'], {
cwd: __dirname
});
p.stdout.pipe(process.stdout);
p.stderr.pipe(process.stderr);
p.on('exit', function (code) {
if (!code) {
done();
} else {
throw new Error('Non-zero exit code from gitbook: ' + String(code));
}
});
});
grunt.registerTask('debuggitbookfiles', 'print the contents of the gitbook website tree', function () {
var spawn = require('child_process').spawn;
var p = spawn('ls', ['-la', 'book/_book/gitbook/website'], {
cwd: __dirname
});
p.stdout.on('data', function (data) {
grunt.log.writeln("ls -la book/_book/gitbook/website");
grunt.log.writeln(data);
});
});
// Create Default Task
grunt.registerTask('check', [
'gitbook',
'debuggitbookfiles',
'http-server:check',
'linkChecker',
]);
// Create Default Task
grunt.registerTask('dev', [
'gitbook',
'http-server:dev',
]);
};