@omegup/msync 0.0.34 → 0.0.35
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/index.esm.js +2 -2
- package/index.js +2 -2
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -1271,12 +1271,12 @@ const executes$1 = (view, input, streamName) => {
|
|
|
1271
1271
|
const withStop = (next, tr) => {
|
|
1272
1272
|
return addTeardown(() => ({ stop, next: next(), clear }), tr);
|
|
1273
1273
|
};
|
|
1274
|
-
const nextData = (data) => (next, debug, tr) => ({
|
|
1274
|
+
const nextData = (data, job) => (next, debug, tr) => ({
|
|
1275
1275
|
cont: withStop(next, tr),
|
|
1276
1276
|
data,
|
|
1277
1277
|
info: { job, debug: `${streamName} on ${collection.collectionName}: ${debug}` },
|
|
1278
1278
|
});
|
|
1279
|
-
const next = nextData([]);
|
|
1279
|
+
const next = nextData([], job);
|
|
1280
1280
|
const data = {
|
|
1281
1281
|
input: input.delta,
|
|
1282
1282
|
finalInputFirst: finalInput.raw(true),
|
package/index.js
CHANGED
|
@@ -1273,12 +1273,12 @@ const executes$1 = (view, input, streamName) => {
|
|
|
1273
1273
|
const withStop = (next, tr) => {
|
|
1274
1274
|
return addTeardown(() => ({ stop, next: next(), clear }), tr);
|
|
1275
1275
|
};
|
|
1276
|
-
const nextData = (data) => (next, debug, tr) => ({
|
|
1276
|
+
const nextData = (data, job) => (next, debug, tr) => ({
|
|
1277
1277
|
cont: withStop(next, tr),
|
|
1278
1278
|
data,
|
|
1279
1279
|
info: { job, debug: `${streamName} on ${collection.collectionName}: ${debug}` },
|
|
1280
1280
|
});
|
|
1281
|
-
const next = nextData([]);
|
|
1281
|
+
const next = nextData([], job);
|
|
1282
1282
|
const data = {
|
|
1283
1283
|
input: input.delta,
|
|
1284
1284
|
finalInputFirst: finalInput.raw(true),
|