@lde/pipeline 0.24.2 → 0.24.3

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.
Files changed (2) hide show
  1. package/dist/stage.js +1 -1
  2. package/package.json +1 -1
package/dist/stage.js CHANGED
@@ -68,7 +68,7 @@ export class Stage {
68
68
  const iter = batches[Symbol.asyncIterator]();
69
69
  const first = await iter.next();
70
70
  if (first.done) {
71
- return new NotSupported('All executors returned NotSupported');
71
+ return new NotSupported('No items selected');
72
72
  }
73
73
  // Reconstruct a full iterable including the peeked first batch.
74
74
  const allBatches = (async function* () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lde/pipeline",
3
- "version": "0.24.2",
3
+ "version": "0.24.3",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/ldelements/lde.git",
6
6
  "directory": "packages/pipeline"