speccore 8.3.10 → 8.3.12

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.
@@ -137,11 +137,11 @@ function slugify(name) {
137
137
  }
138
138
  /**
139
139
  * 生成子任务全局唯一 ID
140
- * 格式: Task-{父任务完整名}-{端名}-{hash4}
141
- * 例: Task-001-user-login-backend-a3f2, Task-001-user-login-web-b7c1
140
+ * 格式: Task-{父任务ID}-{端名}
141
+ * 例: Task-001-booking-service, Task-001-h5-mobile
142
142
  */
143
143
  function generateSubtaskId(parentTaskId, platform) {
144
- // v6.49.5+:确定性格式 {taskId}-{platform},保证全项目唯一
144
+ // v6.49.5+ / v8.3.10+:确定性格式 {taskId}-{platform},保证全项目唯一
145
145
  // 因为每个任务每个端只有一个子任务,所以 {taskId}-{platform} 已经唯一
146
146
  return `Task-${parentTaskId}-${platform}`;
147
147
  }