commular-test

0.1.4 • Public • Published

commular-test

NPM Version Build Status

A commular module to show how commular can be developed and tested easily.

Getting Started

This plugin requires Commular ~0.3.2

If you haven't used Commular before, be sure to check out the documentation

npm install commular-test --save-dev

The "commular-test" task

Overview

This is a dummy Commular module to be used as a template for the rest of real modules.

API

  • A commular module requires to export a command function that receives as argument the program/commander object.

Example:

exports.command = function(program) {
  program
    .command('setup [env]')
    .description('run setup commands for all envs')
    .option("-s, --setup_mode [mode]", "Which setup mode to use")
    .action(function(env, options){
      var mode = options.setup_mode || "normal";
      env = env || 'all';
      console.log('setup for %s env(s) with %s mode', env, mode);
    });
};
 

Readme

Keywords

Package Sidebar

Install

npm i commular-test

Weekly Downloads

5

Version

0.1.4

License

MIT

Last publish

Collaborators

  • tcorral