mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-22 08:50:24 +00:00
21 lines
327 B
JavaScript
21 lines
327 B
JavaScript
|
|
/*
|
||
|
|
* # groc Documentation
|
||
|
|
* Create the documentation to be displayed through the webserver.
|
||
|
|
*/
|
||
|
|
require('groc').CLI([
|
||
|
|
"README.md",
|
||
|
|
"TODO.js",
|
||
|
|
"LICENSE.js",
|
||
|
|
"js/*",
|
||
|
|
"mod_actions/**/*.js",
|
||
|
|
"mod_events/**/*.js"
|
||
|
|
// ,
|
||
|
|
// "rules/*.json"
|
||
|
|
],
|
||
|
|
function(error) {
|
||
|
|
if (error) {
|
||
|
|
process.exit(1);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
);
|