UNPKG

522 BJavaScriptView Raw
1/**
2 * This is example Apemanfile to use "apeman-task-contrib-mkdir".
3 */
4
5"use strict";
6
7module.exports = {
8 $package: {/*...*/},
9 $tasks: {
10 "structure-my-project": {
11 "$worker": "apeman-task-contrib-mkdir",
12 // Directory names to generate.
13 "$args": [
14 "bin",
15 "lib",
16 "docs",
17 "docs/apiguide",
18 "test",
19 "test/unit_tests"
20 ],
21 "$options": {}
22 }
23 }
24};
\No newline at end of file