We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc3453d commit f994601Copy full SHA for f994601
1 file changed
scripts/release.js
@@ -124,7 +124,7 @@ invoke(async () => {
124
const { stdout } = await exec('git diff', { stdio: 'pipe' });
125
if (stdout) {
126
await exec('git add -A');
127
- await exec(`git commit -m release: v${targetVersion}`);
+ await exec(`git commit -m build:\\ v${targetVersion}`);
128
} else {
129
console.log('无变更文件');
130
}
@@ -139,7 +139,7 @@ invoke(async () => {
139
await exec(`git push origin refs/tags/v${targetVersion}`);
140
await exec('git push');
141
142
- signale.success('发布完成');
+ signale.success('\n发布完成');
143
});
144
145
function getPkgRoot(pkg) {
0 commit comments