a2eb58ba by 任超

docs:git提交规范

1 parent 262cb0b5
Showing 1 changed file with 14 additions and 21 deletions
...@@ -3,26 +3,19 @@ npm install ...@@ -3,26 +3,19 @@ npm install
3 # 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题 3 # 建议不要直接使用 cnpm 安装依赖,会有各种诡异的 bug。可以通过如下操作解决 npm 下载速度慢的问题
4 npm install --registry=https://registry.npm.taobao.org 4 npm install --registry=https://registry.npm.taobao.org
5 5
6 # 启动服务 6 ## Git 贡献提交规范
7 npm run dev 7
8 ``` 8 - 参考 [vue](https://github.com/vuejs/vue/blob/dev/.github/COMMIT_CONVENTION.md) 规范 ([Angular](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular))
9 9
10 浏览器访问 http://localhost:8888 10 - `feat` 增加新功能
11 11 - `fix` 修复问题/BUG
12 ## 发布 12 - `style` 代码风格相关无影响运行结果的
13 13 - `perf` 优化/性能提升
14 14 - `refactor` 重构
15 # 构建生产环境 15 - `revert` 撤销修改
16 npm run build 16 - `test` 测试相关
17 ``` 17 - `docs` 文档/注释
18 18 - `chore` 依赖更新/脚手架配置修改等
19 ## 其它 19 - `wip` 开发中
20
21 ```bash
22 # 预览发布环境效果
23 npm run preview
24
25 # 预览发布环境效果 + 静态资源分析
26 npm run preview -- --report
27 20
28 21
......