apeman-task-infr

apeman task to run apeman infra command.

Usage no npm install needed!

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

README

apeman-task-infr

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to run apeman infra command.

Installation

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

Usage

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

Apemanfile.js

/** This is an example Apemanfile to use apeman-task-infra */

'use strict'

module.exports = {
  $pkg: { /*...*/},
  $infrs: {
    'my-node-infra': `./infra/node/Dockerfile`
  },
  $tasks: {
    'infra:build': require('apeman-task-infra')({
    })
  }
}

Then,

$ apeman task infra:build

Signature

apemanTaskInfra(options) -> function

apeman task to run apeman infra command.

Args
Name Type Default Description
options object Optional settings.

License

This software is released under the MIT License.

Links