@omegup/msync 0.0.28 → 0.0.29
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 +5 -7
- package/index.js +5 -7
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -576,13 +576,11 @@ const subMerge = (args, out, gid, extra, idPrefix, first) => {
|
|
|
576
576
|
.with($merge_({
|
|
577
577
|
...out,
|
|
578
578
|
on: root().of(gid),
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
.with(doubleReplace($set_(updater))).stages,
|
|
585
|
-
},
|
|
579
|
+
vars: { new: ['new', root().expr()] },
|
|
580
|
+
stages: 'ctx',
|
|
581
|
+
whenMatched: link()
|
|
582
|
+
.with(mergeAggregates)
|
|
583
|
+
.with(doubleReplace($set_(updater))).stages,
|
|
586
584
|
})).stages);
|
|
587
585
|
};
|
|
588
586
|
|
package/index.js
CHANGED
|
@@ -578,13 +578,11 @@ const subMerge = (args, out, gid, extra, idPrefix, first) => {
|
|
|
578
578
|
.with($merge_({
|
|
579
579
|
...out,
|
|
580
580
|
on: root().of(gid),
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
.with(doubleReplace($set_(updater))).stages,
|
|
587
|
-
},
|
|
581
|
+
vars: { new: ['new', root().expr()] },
|
|
582
|
+
stages: 'ctx',
|
|
583
|
+
whenMatched: link()
|
|
584
|
+
.with(mergeAggregates)
|
|
585
|
+
.with(doubleReplace($set_(updater))).stages,
|
|
588
586
|
})).stages);
|
|
589
587
|
};
|
|
590
588
|
|