fix(core): update

This commit is contained in:
Philipp Kunz 2023-11-06 20:48:32 +01:00
parent 2c1d9f05ce
commit 62796f7151
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartstream',
version: '3.0.7',
version: '3.0.8',
description: 'simplifies access to node streams'
}

View File

@ -48,5 +48,6 @@ export class StreamIntake<T> extends plugins.stream.Readable {
this.signalEndBoolean = true;
this.pushedNextDeferred.resolve();
this.pushNextObservable.signalComplete();
this.push(null);
}
}