summaryrefslogtreecommitdiffstats
path: root/lib/cli/serve.js
blob: d97cfedff0712b10e569dac138c25b8c2b8e1098 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
var path = require('path');

var options = require('./options');
var getBook = require('./getBook');

var Parse = require('../parse');
var Output = require('../output');

module.exports = {
    name: 'serve [book] [output]',
    description: 'serve the book as a website for testing',
    options: [
        options.log,
        options.format
    ],
    exec: function(args, kwargs) {

    }
};