mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-16 22:10:31 +00:00
19 lines
362 B
Bash
Executable file
19 lines
362 B
Bash
Executable file
#!/usr/bin/env nodejs
|
|
/*
|
|
* # groc Documentation
|
|
* Create the documentation to be displayed through the webserver.
|
|
*/
|
|
//
|
|
require( 'groc' ).CLI(
|
|
[
|
|
"README.md",
|
|
"LICENSE.md",
|
|
"coffee/*.coffee",
|
|
"examples/*/**",
|
|
"-o./webpages/public/doc"
|
|
],
|
|
function( err ) {
|
|
if ( err ) console.error( err );
|
|
else console.log( 'Done!' );
|
|
}
|
|
);
|