基于前端知识总结梳理。
- Git
- Java
- Node
- Vue
- JavaScript
- HTML
- CSS
- 安装依赖
npm install
- 启动服务
npm run start
- 发布
npm run build
- 添加更新日志
npm run release
// 首次发布版本
npm run release -- --first-release
// 不同版本更新
npm run release-major
npm run release-minor
npm run release-patch
- 预发布版本
// 结果将会标记版本为:1.0.1-alpha.0。
npm run release -- --prerelease alpha
// 指定版本
npm run release -- --release-as 1.1.0
- 跳过更改版本
npm run release -- --skip.bump
- 跳过生成changelog
npm run release -- --skip.changelog
- 跳过提交
npm run release -- --skip.commit
待补充