
<%= pkg.name %> - <%= pkg.description %> (v<%= pkg.version %>)

Usage

  lets [--version] [--help] [--quiet|--verbose] [--letsfile=<path>]
       <stage> <task>

Options

    --help, -h  Display this help text.
 --version, -v  Print the lets-cli and (if available) lets version.
    --letsfile  Specify a path to a custom Letsfile. By default, lets looks in
                the current or parent directories for the nearest Letsfile.js.
   --quiet, -q  Output nothing to stdout.
 --verbose, -V  Output even more info to stdout.
<% if(stages.length) { %>

Available stages
<% stages.forEach(function (stage) { %>
  <%= stage %><% });
}
if(tasks.length) { %>

Registered tasks
<% tasks.forEach(function (task) { %>
  <%= task %><% });
} %>

For more information, see https://github.com/letsjs/lets
