feat(smartstream): bump dependencies, update build/publish config, refactor tests, and overhaul documentation

This commit is contained in:
2026-02-28 08:48:58 +00:00
parent 3d13cb76f6
commit 9b9b1be62b
15 changed files with 5720 additions and 1756 deletions

View File

@@ -9,7 +9,7 @@ export {
const smartenvInstance = new smartenv.Smartenv();
await smartenvInstance.getSafeNodeModule<typeof import('stream/web')>('stream/web', async (moduleArg) => {
globalThis.ReadableStream = moduleArg.ReadableStream;
globalThis.WritableStream = moduleArg.WritableStream;
globalThis.TransformStream = moduleArg.TransformStream;
globalThis.ReadableStream = moduleArg.ReadableStream as any;
globalThis.WritableStream = moduleArg.WritableStream as any;
globalThis.TransformStream = moduleArg.TransformStream as any;
})