wac-cli
====

> 前端开发配置构建工具，提供初始化项目及组件脚手架、本地开发、webpack构建等功能

```
  Usage: wac [options] [command]

  Commands:

    init [options]    初始化脚手架
    build [options]   本地打包构建
    start [options]   启动本地开发

  Options:

    -h, --help     output usage information
    -v, --version  output the version number

```

## 安装

```
wnpm i -g wac-cli
```

## 使用

### 初始化项目

```
wac init --project
wac start
```

### 初始化npm组件

```
wac init --component component-name
wac start
```

### 初始化node模块

```
wac init --module module-name
```
