feat(package.json): 增加changelog和完善提交机制
This commit is contained in:
parent
6e10d2c42f
commit
6069320e71
|
@ -0,0 +1,29 @@
|
|||
<a name="1.0.3"></a>
|
||||
## 1.0.3 (2017-11-02)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* 优化合计组件语法 ([3d4a400](https://github.com/tinper-bee/bee-table/commit/3d4a400))
|
||||
* 修改checkbox属性修改 ([2398040](https://github.com/tinper-bee/bee-table/commit/2398040))
|
||||
* 修改onRowClick的api ([d5e85d1](https://github.com/tinper-bee/bee-table/commit/d5e85d1))
|
||||
* 修改合计行宽度没有对齐的bug ([e26f3b5](https://github.com/tinper-bee/bee-table/commit/e26f3b5))
|
||||
* 修改方法名 ([350dc43](https://github.com/tinper-bee/bee-table/commit/350dc43))
|
||||
* 删除多余demo,修改样式和优化合计功能代码 ([b01d24d](https://github.com/tinper-bee/bee-table/commit/b01d24d))
|
||||
* 更新日期组件版本和提取dateRender组件 ([06e0091](https://github.com/tinper-bee/bee-table/commit/06e0091))
|
||||
* 解决合计行与排序组合使用时的问题 ([6f6abe5](https://github.com/tinper-bee/bee-table/commit/6f6abe5))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* 为合计功能增加列可配置,并且完善文档 ([c9f839b](https://github.com/tinper-bee/bee-table/commit/c9f839b))
|
||||
* 抽离下拉框为selectRender ([b2acc8e](https://github.com/tinper-bee/bee-table/commit/b2acc8e))
|
||||
* 提交edittype组件render ([9c05647](https://github.com/tinper-bee/bee-table/commit/9c05647))
|
||||
* 新增demo ([269e6f1](https://github.com/tinper-bee/bee-table/commit/269e6f1))
|
||||
* 新增多选示例 ([3a3df49](https://github.com/tinper-bee/bee-table/commit/3a3df49))
|
||||
* 新增嵌套子表格功能和demo,文档。修复rowRef参数bug ([87a81b2](https://github.com/tinper-bee/bee-table/commit/87a81b2))
|
||||
* 新增排序和全选高阶组件,并增加使用示例 ([f8a00fe](https://github.com/tinper-bee/bee-table/commit/f8a00fe))
|
||||
* 新增组件示例 ([69e0751](https://github.com/tinper-bee/bee-table/commit/69e0751))
|
||||
|
||||
|
||||
|
|
@ -20,7 +20,10 @@
|
|||
"license": "MIT",
|
||||
"main": "./build/index.js",
|
||||
"config": {
|
||||
"port": 3000
|
||||
"port": 3000,
|
||||
"commitizen": {
|
||||
"path": "./node_modules/cz-conventional-changelog"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "bee-tools run start",
|
||||
|
@ -30,7 +33,8 @@
|
|||
"chrome": "bee-tools run chrome",
|
||||
"coveralls": "bee-tools run coverage",
|
||||
"browsers": "bee-tools run browsers",
|
||||
"pub": "bee-tools run pub"
|
||||
"pub": "bee-tools run pub",
|
||||
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
|
||||
},
|
||||
"dependencies": {
|
||||
"classnames": "^2.2.5",
|
||||
|
@ -62,6 +66,7 @@
|
|||
"bee-tooltip": "^1.0.2",
|
||||
"chai": "^3.5.0",
|
||||
"console-polyfill": "~0.2.1",
|
||||
"cz-conventional-changelog": "^2.1.0",
|
||||
"enzyme": "^2.4.1",
|
||||
"es5-shim": "~4.1.10",
|
||||
"react": "^15.5.0",
|
||||
|
|
Loading…
Reference in New Issue