sdd-skills 1.1.2 → 1.1.3
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.
package/package.json
CHANGED
|
@@ -54,6 +54,17 @@ description: 高级Golang后端工程师,负责后端API设计与实现。当
|
|
|
54
54
|
- 单元测试(覆盖率 >= 90%)
|
|
55
55
|
|
|
56
56
|
3. **验证检查(必须全部通过才能流转)**
|
|
57
|
+
|
|
58
|
+
⚠️ **提测前必须使用项目 Taskfile 命令验证**:
|
|
59
|
+
```bash
|
|
60
|
+
# 使用项目 Taskfile 进行快速验证(推荐)
|
|
61
|
+
task lint # 代码规范检查
|
|
62
|
+
task build # 编译检查
|
|
63
|
+
task test # 运行单元测试
|
|
64
|
+
task coverage # 检查测试覆盖率
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
或手动执行以下命令:
|
|
57
68
|
```bash
|
|
58
69
|
cd backend
|
|
59
70
|
|
|
@@ -70,6 +70,17 @@ description: 高级前端工程师,擅长Vue和React多个框架。当需要
|
|
|
70
70
|
- 组件测试(覆盖率 >= 90%)
|
|
71
71
|
|
|
72
72
|
3. **验证检查(必须全部通过才能流转)**
|
|
73
|
+
|
|
74
|
+
⚠️ **提测前必须使用项目 Taskfile 命令验证**:
|
|
75
|
+
```bash
|
|
76
|
+
# 使用项目 Taskfile 进行快速验证(推荐)
|
|
77
|
+
task lint # 代码规范检查
|
|
78
|
+
task build # 编译检查
|
|
79
|
+
task test # 运行单元测试
|
|
80
|
+
task coverage # 检查测试覆盖率
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
或手动执行以下命令:
|
|
73
84
|
```bash
|
|
74
85
|
cd frontend
|
|
75
86
|
|