deno_console not being properly instantiated?
Not sure if it's indended, or if I am missing a step, but several core extensions, for example the deno_console crate, do not:
- specify an entrypoint for esm, leading to a panic on startup
- add their APIs to window or global, making them inert by default
In my implementation I've had to include a small extension of my own along-side console that does the following:
So my question; is that intended behaviour? Or did I miss a step somewhere
- specify an entrypoint for esm, leading to a panic on startup
- add their APIs to window or global, making them inert by default
In my implementation I've had to include a small extension of my own along-side console that does the following:
So my question; is that intended behaviour? Or did I miss a step somewhere
