grafast 0.1.1-beta.7 → 0.1.1-beta.8
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/engine/executeBucket.js +4 -0
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -419,6 +419,10 @@ function executeBucket(bucket, requestContext) {
|
|
|
419
419
|
}
|
|
420
420
|
stepLoop: for (let allStepsIndex = executedLength; allStepsIndex < allStepsLength; allStepsIndex++) {
|
|
421
421
|
const step = (0, utils_js_1.sudo)(_allSteps[allStepsIndex]);
|
|
422
|
+
// Unary steps only need to be processed once
|
|
423
|
+
if (step._isUnary && dataIndex !== 0) {
|
|
424
|
+
continue;
|
|
425
|
+
}
|
|
422
426
|
try {
|
|
423
427
|
const deps = [];
|
|
424
428
|
const extra = extras[allStepsIndex];
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "0.1.1-beta.
|
|
1
|
+
export declare const version = "0.1.1-beta.8";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED