Static compilation of deno modules
Is there a way to statically compile libraries into the .js bundle instead of dynamically retrieving them from deno.land.
The point is that I would like to test the Boa engine in the Deno environment and so the libraries are interfering.
Of course the Deno internals have to be implemented afterwards.
So that, for example, from the following code:
becomes:
the compiled code of https://github.com/lucacasonato/deno_local_file_fetch/blob/main/mod.ts
something like:
The point is that I would like to test the Boa engine in the Deno environment and so the libraries are interfering.
Of course the Deno internals have to be implemented afterwards.
So that, for example, from the following code:
becomes:
the compiled code of https://github.com/lucacasonato/deno_local_file_fetch/blob/main/mod.ts
something like:
