apeman-task-contrib-mkdir
Apeman task contribution plugin to make directories.
Installation
Install module via npm
$ npm install apeman-task-contrib-mkdir --save-dev
Usage
Define a task at $tasks
property in you Apemanfile.
/**
* This is example Apemanfile to use "apeman-task-contrib-mkdir".
*/
"use strict";
module.exports = {
$pkg: {/*...*/},
$tasks: {
// Define your own task.
"my-task-01": require('apeman-task-contrib-mkdir')([
"bin", "lib", "docs", "docs/apiguide", "test", "test/unit_tests"
], {
});
}
};
Then, run the task via apeman task command.
# Run the task from CLI.
$ apeman task "my-task-01"
Option
Name | Type | Description |
---|
License
This software is released under the MIT License.