fix(core): update

This commit is contained in:
2024-05-05 18:30:05 +02:00
parent 413e2af717
commit 42a90e804a
7 changed files with 17 additions and 7 deletions

View File

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

View File

@ -2,4 +2,7 @@ export * from './smartstream.classes.smartduplex.js';
export * from './smartstream.classes.streamwrapper.js';
export * from './smartstream.classes.streamintake.js';
export * from './smartstream.functions.js'
export * from './smartstream.functions.js';
import * as plugins from './smartstream.plugins.js';
export const webstream = plugins.webstream;

View File

@ -7,6 +7,7 @@ export { stream };
import * as lik from '@push.rocks/lik';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrx from '@push.rocks/smartrx';
import * as webstream from '@push.rocks/webstream';
export { lik, smartpromise, smartrx };
export { lik, smartpromise, smartrx, webstream };