@lark-apaas/devtool-kits 1.2.5-alpha.3 → 1.2.5-alpha.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.
- package/dist/index.cjs +2 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2121,9 +2121,6 @@ async function readTriggerList(filePath, trigger, path7, limit) {
|
|
|
2121
2121
|
if (alreadyAdded) {
|
|
2122
2122
|
return false;
|
|
2123
2123
|
}
|
|
2124
|
-
if (!builder.hasCompleted) {
|
|
2125
|
-
return false;
|
|
2126
|
-
}
|
|
2127
2124
|
const isAutomationTrigger = builder.path?.endsWith(path7);
|
|
2128
2125
|
if (!isAutomationTrigger) {
|
|
2129
2126
|
return false;
|
|
@@ -2147,7 +2144,7 @@ async function readTriggerList(filePath, trigger, path7, limit) {
|
|
|
2147
2144
|
if (shouldIncludeInCompletedCalls(builder)) {
|
|
2148
2145
|
completedCalls.push(builder);
|
|
2149
2146
|
if (limit && completedCalls.length > limit) {
|
|
2150
|
-
completedCalls.
|
|
2147
|
+
completedCalls.pop();
|
|
2151
2148
|
}
|
|
2152
2149
|
}
|
|
2153
2150
|
}, "updateBuilderMetadata");
|
|
@@ -2162,7 +2159,7 @@ async function readTriggerList(filePath, trigger, path7, limit) {
|
|
|
2162
2159
|
if (shouldIncludeInCompletedCalls(builder)) {
|
|
2163
2160
|
completedCalls.push(builder);
|
|
2164
2161
|
if (limit && completedCalls.length > limit) {
|
|
2165
|
-
completedCalls.
|
|
2162
|
+
completedCalls.pop();
|
|
2166
2163
|
}
|
|
2167
2164
|
}
|
|
2168
2165
|
}, "handleRequestCompleted");
|