@taole/deploy-helper 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.mjs +1 -1
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -147,7 +147,7 @@ async function main() {
147
147
  process.exit(1);
148
148
  }
149
149
  if (currentStatus.branch !== currentProdBranch) {
150
- console.log(`当前项目不是${currentProdBranch}分支, 请切换至${currentProdBranch}分支再执行prod命令`);
150
+ console.log(`当前项目分支${currentStatus.branch}不是${currentProdBranch}分支, 请切换至${currentProdBranch}分支再执行prod命令`);
151
151
  process.exit(1);
152
152
  }
153
153
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taole/deploy-helper",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "脚本部署工具,用于将项目部署到测试环境或生产环境",
5
5
  "main": "index.mjs",
6
6
  "type": "module",