@bscomp/ep-ui 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -69,3 +69,16 @@ npm install
69
69
  >npm config set registry https://registry.npmmirror.com/ 切换淘宝镜像源
70
70
  >npm install
71
71
  ```
72
+
73
+ ### Git 提交规范(PR 提交规范)
74
+
75
+ - `ci`: ci 配置文件和脚本的变动;
76
+ - `chore`: 构建系统或辅助工具的变动;
77
+ - `fix`: 代码 BUG 修复;
78
+ - `feat`: 新功能;
79
+ - `perf`: 性能优化和提升;
80
+ - `refactor`: 仅仅是代码变动,既不是修复 BUG 也不是引入新功能;
81
+ - `style`: 代码格式调整,可能是空格、分号、缩进等等;
82
+ - `docs`: 文档变动;
83
+ - `test`: 补充缺失的测试用例或者修正现有的测试用例;
84
+ - `revert`: 回滚操作;