.versionrc.js 908 B

1234567891011121314151617181920212223242526
  1. console.log(
  2. '\x1B[0;37;44m INFO \x1B[0m',
  3. '\x1B[0;;34m ' +
  4. `读取了: ${__filename.slice(__dirname.length + 1)}` +
  5. ' \x1B[0m'
  6. );
  7. module.exports = {
  8. types: [
  9. { type: 'feat', section: '✨ 新特性', hidden: false },
  10. { type: 'fix', section: '🐛 Bug修复', hidden: false },
  11. { type: 'docs', section: '📝 文档更改', hidden: false },
  12. { type: 'style', section: '🎨 样式更改', hidden: false },
  13. { type: 'refactor', section: '🔨 代码重构', hidden: false },
  14. {
  15. type: 'perf',
  16. section: '⚡️ 优化性能',
  17. hidden: false,
  18. },
  19. { type: 'test', section: '🧪 测试', hidden: false },
  20. { type: 'build', section: '🚀 构建', hidden: false },
  21. { type: 'ci', section: '👷 CI', hidden: false },
  22. { type: 'chore', section: '🏗 其他', hidden: false },
  23. { type: 'revert', section: '⏪ 回退', hidden: false },
  24. ],
  25. };