0.1.4 • Published 8 years ago

commular-test v0.1.4

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

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);
        });
    };
0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago