UNPKG

octopus-deploy

Version:

Node scripts to package up applications, create releases, and deploy with Octopus Deploy. This package leverages the Octopus Deploy REST API in order to deploy from Windows and non-Windows machines.

15 lines (12 loc) 339 B
#!/usr/bin/env node 'use strict' const yargs = require('yargs') // eslint-disable-next-line no-unused-expressions yargs .usage('Usage:\n $0 <command> [options]') .commandDir('./commands', { exclude: /options\.js$/ }) .demandCommand(1, 'You must specify a command and options') .help() .alias('?', 'help') .wrap(100) .argv