commit 规范
* feat: 新功能
* fix: 修改bug
* docs: 修改文档
* style: 格式化代码结构(不影响代码运行的变动)
* perf: 性能优化
* refactor: 重构(即不是新增功能,也不是修改bug的代码变动,比如重命名变量)
* chore: 构建过程或辅助工具的变动(不会影响代码运行)
* revert:如果当前 commit 用于撤销以前的 commit,则必须以revert:开头,后面跟着被撤销 Commit 的 Header
example: revert: feat: add 'graphiteWidth' option