You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of 9.26.0 a require('stream') was introduced, which no longer bundles for the browser through esbuild without extra configuration.
See error:
> node_modules/liquidjs/dist/liquid.browser.esm.js:1701:35: error: Could not resolve "stream" (use "platform: 'node'" when building for node)
1701 │ this.stream = new (require('stream').PassThrough)();
╵
It would be great if this could be remedied somehow — I have packages in the wild which have only a major pin on liquidjs, which will now be failing upon a fresh install
The text was updated successfully, but these errors were encountered:
As of 9.26.0 a
require('stream')
was introduced, which no longer bundles for the browser through esbuild without extra configuration.See error:
Introduced in the source here:
liquidjs/src/emitters/streamed-emitter.ts
Line 5 in aea3441
It would be great if this could be remedied somehow — I have packages in the wild which have only a major pin on liquidjs, which will now be failing upon a fresh install
The text was updated successfully, but these errors were encountered: