UNPKG

629 BJavaScriptView Raw
1/**
2 * This is example Apemanfile to use "apeman-task-contrib-jsdoc".
3 */
4
5"use strict";
6
7module.exports = {
8 $package: {/*...*/},
9 $tasks: {
10 "my-example-task": {
11 "$worker": "apeman-task-contrib-jsdoc",
12 "$args": [
13 "README.md",
14 "lib/**/*.js"
15 ],
16 "$options": {
17 "verbose": true,
18 "tutorials": "docs/tutorials",
19 "destination": "docs/apiguide",
20 "template": "node_modules/ink-docstrap/template",
21 "configure": "docs/.apiguide.json"
22 }
23 }
24 }
25};
\No newline at end of file