apeman-task-need

apeman task to run apeman need command.

Usage no npm install needed!

<script type="module">
  import apemanTaskNeed from 'https://cdn.skypack.dev/apeman-task-need';
</script>

README

apeman-task-need

Build Status Code Climate Code Coverage npm Version

apeman task to run apeman need command.

Installation

$ npm install apeman-task-need --save-dev

Usage

  1. Define a task within Apemanfile.js
  2. Call the task via apeman task command.

Apemanfile.js

/** This example Apemanfile to use apeman-task-need */

"use strict";

module.exports = {
    $pkg: {/*...*/},
    $tasks: {
        // Define your own task.
        'my-task-01': require('apeman-task-need')({
            //Options
        })
    },
    $needs:{
        "apeman":{"how":"npm i apeman -g"}
    }
};

Then,

$ apeman task my-task-01

Options

Key Type Default Description
configuration string Path of Apemanfile.js or apeman project directory.

License

This software is released under the MIT License.

Links