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
apeman task to generate certifications.
Installation
$ npm install apeman-task-crt --save-devUsage
- Define a task within Apemanfile.js
- 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:certsOptions
| Key | Type | Default | Description |
|---|---|---|---|
| force | boolean | false | Force to override. |
| out | string | process.cwd() | Output directory path. |
License
This software is released under the MIT License.