We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
npm run release
执行npm run release报:
⧗ input: $npm_package_version ✖ subject may not be empty [subject-empty] ✖ type may not be empty [type-empty] ✖ found 2 problems, 0 warnings
应该是执行到 git commit没有给正确格式的提交信息
git commit
如上所示,执行npm run release到git commit失败。再次执行时,又会重新开始test、build,是否有办法接着上次的git commit继续执行呢?
The text was updated successfully, but these errors were encountered:
收到,加了commitlint了,但是这个release并不支持windows,感觉得换个工具了
npm run release 里面的$npm_package_version并未被正确替换为版本号,windows的scripts和mac不一样
$npm_package_version
"release": "npm test && npm run build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags"
mac上release会提交一个版本号的commit,如下图所示,看来需要一个发包工具
Sorry, something went wrong.
No branches or pull requests
执行
npm run release
失败执行
npm run release
报:应该是执行到
git commit
没有给正确格式的提交信息环境
其他
如上所示,执行
npm run release
到git commit
失败。再次执行时,又会重新开始test、build,是否有办法接着上次的git commit
继续执行呢?The text was updated successfully, but these errors were encountered: