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
When using Deno with core and some other package, the subsequent package is unable to find core. Currently core registers itself under globalThis[Symbol.for('diffHTML')] and then related packages hook into core by reading this value. This means core must always be loaded first. This works great in Node and the browser, but fails to work in Deno.
The text was updated successfully, but these errors were encountered:
When using Deno with core and some other package, the subsequent package is unable to find core. Currently core registers itself under
globalThis[Symbol.for('diffHTML')]
and then related packages hook into core by reading this value. This means core must always be loaded first. This works great in Node and the browser, but fails to work in Deno.The text was updated successfully, but these errors were encountered: