rebuild online book

This commit is contained in:
EasyChen
2020-05-08 10:46:34 +08:00
parent e89e0c42b4
commit 454c0a7c2f
21 changed files with 55 additions and 22 deletions

14
docs/RoboFile.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
/**
* This is project's console commands configuration for Robo task runner.
*
* @see http://robo.li/
*/
class RoboFile extends \Robo\Tasks
{
// define public methods as commands
public function build()
{
$this->_exec("gitbook build . docs");
}
}