deno-embedder icon indicating copy to clipboard operation
deno-embedder copied to clipboard

Dev tools for embedding static files into Deno as code.

Results 12 deno-embedder issues
Sort by recently updated
recently updated
newest added

The current implementation of Deno Embedder creates a `dir.ts` file which imports all files for an embed directory. This means that if you have a large set of embeds, you...

ESBuild was easy to set up as a plugin, but it currently has a bug/limitation that re-exports (which are [a recommended pattern][1] in Deno `deps.ts` files) [aren't properly removed by...

Right now I just point to the sample repo. While it *does* have a lot of comments to help guide users, a proper README guiding through setup would be better....

As part of a build, it would be nice to be able to re-generate embedded files to make sure they're the most up-to-date versions. (that is: *without* starting up "dev...

See: https://docs.github.com/en/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github

This is a feature I requested and used in rust-embed: https://github.com/pyrossh/rust-embed/issues/140 Would be nice to have it here too. - [ ] Update the generator to save LastModified - [...

Saw an issue today when running in dev mode: * Saved a .ts file with invalid syntax. * ESBuild failed to bundle the files. * embedder.ts crashed. * But the...

Since v1.2.1, I switched to using https://github.com/lucacasonato/esbuild_deno_loader to download/cache Deno dependencies. However, that plugin has an issue bundling non-code sources: * https://github.com/lucacasonato/esbuild_deno_loader/issues/129 ### Workaround: ### Until then, keep code and...

[Deno 2.1] adds even better support for loading WASM modules. I bet storing binary data inside of a WASM file might be more space-efficient than storing it as base64 data...

Fix this: https://github.com/NfNitLoop/deno-embedder/blob/426e55a78cdf5f24e394299c777128288c75c3e3/deno.jsonc#L32-L40 Once we have better logging from this: https://github.com/denoland/deno/issues/27647