chore: 1.0.28

This commit is contained in:
力皓 2021-01-05 14:43:56 +08:00
parent bd8f615ac0
commit 32bcd9a810
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"lerna": "2.11.0",
"version": "1.0.28-beta.2",
"version": "1.0.28",
"npmClient": "tyarn",
"registry": "http://registry.npm.alibaba-inc.com",
"useWorkspaces": true,

View File

@ -9,7 +9,8 @@ const reBranchVersion = /^(?:[a-z]+\/)(\d+\.\d+\.\d+)$/im;
const match = reBranchVersion.exec(gitBranchName);
if (!match) {
throw new Error(`[checkversion] gitBranchName: ${gitBranchName}`);
console.warn(`[checkversion] gitBranchName: ${gitBranchName}`);
return;
}
const releaseVersion = match[1];