Changelogs

### 1.0.10 （优化项）
```
{
    "external": [],
    "commonjs": {
        "include": [
            "./node_modules/prop-types/**/*",
            "./node_modules/velocity-animate/**/*",
            "./node_modules/axios/**/*"

        ]
    }
}
```
增加.balarc文件，external第三方包不打进文件，include第三方非es module包打进工程

### 1.0.11

.balarc
```
{
    "bundleType": "split"||"single"||"all",//打包类型，默认 split
    "external": [],
    "commonjs": {
        "include": [
            "./node_modules/prop-types/**/*",
            "./node_modules/velocity-animate/**/*",
            "./node_modules/axios/**/*"

        ]
    }
}
```


### 1.1.0
* [ ] 错误友好提示，一个模块打包失败，直接结束
* [ ] 配置文件读取
* [ ] 支持小图片打包逻辑
* [ ] 嵌套组件打包失败

## 工具开发调试

Typescript 代码调试
```
$ TS_NODE_PROJECT="../../tsconfig.dev.json" ts-node ../pabala-biu/src/index.tsx pack
```
