assistsx-js 0.1.26 → 0.1.27
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/dist/Step.js +2 -2
- package/package.json +1 -1
- package/src/Step.ts +2 -2
package/dist/Step.js
CHANGED
|
@@ -154,6 +154,8 @@ export class Step {
|
|
|
154
154
|
}
|
|
155
155
|
}
|
|
156
156
|
}
|
|
157
|
+
//步骤执行完成
|
|
158
|
+
stepStore.completeStep();
|
|
157
159
|
}
|
|
158
160
|
catch (e) {
|
|
159
161
|
console.error(`步骤${implnName}执行出错`, e);
|
|
@@ -167,8 +169,6 @@ export class Step {
|
|
|
167
169
|
stepStore.setError(errorMsg);
|
|
168
170
|
throw e;
|
|
169
171
|
}
|
|
170
|
-
//步骤执行结束
|
|
171
|
-
stepStore.completeStep();
|
|
172
172
|
return currentStep;
|
|
173
173
|
}
|
|
174
174
|
/**
|
package/package.json
CHANGED
package/src/Step.ts
CHANGED
|
@@ -219,6 +219,8 @@ export class Step {
|
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
|
+
//步骤执行完成
|
|
223
|
+
stepStore.completeStep();
|
|
222
224
|
} catch (e: any) {
|
|
223
225
|
console.error(`步骤${implnName}执行出错`, e);
|
|
224
226
|
//步骤执行出错
|
|
@@ -231,8 +233,6 @@ export class Step {
|
|
|
231
233
|
stepStore.setError(errorMsg);
|
|
232
234
|
throw e
|
|
233
235
|
}
|
|
234
|
-
//步骤执行结束
|
|
235
|
-
stepStore.completeStep();
|
|
236
236
|
return currentStep;
|
|
237
237
|
}
|
|
238
238
|
|