Thomas
Separate importmap file for static website
I have a folder in my Deno app for a static Website. The content could look like this:
And I use an importmap.json for this Website. However, Deno complains with the following error message:
Relative import path "@fullcalendar/core" not prefixed with / or ./ or ../ and not in import map from "main.js" Hint: Use [deno add @fullcalendar/core] to add the dependency.deno(resolver-error)
But, I don't want to add @fullcalendar/core or other website libs to the deno.json. Server-Side and Client-Side libs should remain separate.
How can I prevent Deno from detecting an error here?
2 replies
reflect-metadata on Deno Deploy not working?
Is there a reason why no reflect-metadata-libs work on deno deploy?
I have tried the following:
- https://www.npmjs.com/package/@abraham/reflection
- https://deno.land/x/reflect_metadata@v0.1.12-2
- https://deno.land/x/deno_reflect@v0.2.1
- https://deno.land/x/reflection@0.0.2
6 replies
How to install jupyter using deno v1.41.x
According to the documentation https://docs.deno.com/runtime/manual/tools/jupyter the command should be
deno jupyter --unstable --instal
. This leads to an error because --unstable no longer exists.
But apparently there is also no flag named --unstable-jupyter?
Is this a bug?4 replies
Best practice for releasing a deno package on GitHub
Is there a best practice for the release process of a Deno library on GitHub? I use semantic-release for node libraries.
Automating the release & (publishing to jsr.io) can still be quite helpful for libraries.
6 replies