Kevin Tale
cannot publish package to jsr but it uses a shared file
So this is my setup
foo/mods
imports the utils file like so
import { resolveFromRoot } from "../../utils.ts";
foo deno.json is
but when publishing I got error[invalid-path]: path is not in publish directory
I understand the error but what is the solution to this?
thanks!3 replies
How to add a simple live reload?
Consider this super simple codebase
Then I run
deno run -A -r --watch main.ts
.
http://localhost:8000/
will correctly serve my html content but how can I enable somekind of live reload where if I edit my index.html
in VSCode it will effectively show the updated index.html
in my browser?
thanks30 replies