# imhele

[![NPM version](https://img.shields.io/npm/v/imhele.svg?style=flat)](https://npmjs.org/package/imhele)
[![NPM downloads](http://img.shields.io/npm/dm/imhele.svg?style=flat)](https://npmjs.org/package/imhele)
[![Build Status](https://img.shields.io/travis/imhele/imhele.svg?style=flat)](https://travis-ci.org/imhele/imhele)
[![Coverage Status](https://coveralls.io/repos/github/imhele/imhele/badge.svg?branch=master)](https://coveralls.io/github/imhele/imhele?branch=master)
[![License](https://img.shields.io/npm/l/imhele.svg)](https://npmjs.org/package/imhele)

Pluggable scripts in cli.

## Install

```bash
$ npm install imhele -g
or
$ yarn global add imhele
```

## Usgae

### help

```bash
$ imhele help <command> [--desc | -d]
$ imhele <command> [--help | -h] [--desc | -d]
```

#### Example

```bash
$ imhele help
$ imhele help watch
$ imhele watch -h
```

### version

```bash
$ imhele version <command> [--all | -a]
```

#### Example

```bash
$ imhele version --all
```

### watch

```bash
$ imhele watch <files> [--ignore | -i] <string | string[]> [--depth | -d] <number>
               [--command | -c] <string>
```

#### Example

```bash
$ imhele watch ./**/*.ts --command "tsc <%= path %>"
```
