JSPM

apeman-task-crt

1.0.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q40850F
  • License MIT

apeman task to generate certifications.

Package Exports

  • apeman-task-crt

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (apeman-task-crt) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

apeman-task-crt

Build Status Code Climate Code Coverage npm Version JS Standard

apeman task to generate certifications.

Installation

$ npm install apeman-task-crt --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-crt */

'use strict'

module.exports = {
  $pkg: { /* ... */ },
  $tasks: {
    // Define your own task.
    'nginx:certs': require('apeman-task-crt')([
      'my-app.example.com',
      'my-admin-app.example.com'
    ], {
      //Options
      force: false,
      out: 'doc/nginx/certs'
    })
  }
}

Then,

$ apeman task nginx:certs

Signature

define(name, options) -> function

apeman task to generate certifications.

Args
Name Type Default Description
name string function
options object Optional settings.
options.out string Output directory path.

License

This software is released under the MIT License.