mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-21 01:53:26 +00:00
fa17f16716
Improve plugins installation
20 lines
396 B
JavaScript
20 lines
396 B
JavaScript
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) {
|
|
|
|
}
|
|
};
|