Angular怎么结合Git Commit进行版本处理( 三 )

至此 , 我们完成了版本信息 。 我们最后来调整下 package.json 的命令:
"scripts": { "start": "ng serve", "version": "node version.js", "commit": "node commit.js", "build": "ng build", "build:production": "npm run copyConfigProduction && npm run version && npm run build", "build:development": "npm run copyConfigDevelopment && npm run version && npm run build", "build:test": "npm run copyConfigTest && npm run version && npm run build", "copyConfigProduction": "cp ./config/production.json ./config/default.json", "copyConfigDevelopment": "cp ./config/development.json ./config/default.json", "copyConfigTest": "cp ./config/test.json ./config/default.json"}使用 scripts 一是为了方便管理 , 而是方便 jenkins 构建方便调用 。 对于 jenkins 部分 , 感兴趣者可以自行尝试 。
更多编程相关知识 , 请访问:编程入门!!
以上就是Angular怎么结合Git Commit进行版本处理的详细内容 , 更多请关注电脑自学网其它相关文章!
【Angular怎么结合Git Commit进行版本处理】

推荐阅读