Given this deno.json
in your project root:
{
"imports": {
"std/": "https://deno.land/std@0.189.0/"
},
"tasks": {
"dev": "deno run --watch main.ts"
}
}
You can run the dev
task with:
deno task dev
Given this deno.json
in your project root:
{
"imports": {
"std/": "https://deno.land/std@0.189.0/"
},
"tasks": {
"dev": "deno run --watch main.ts"
}
}
You can run the dev
task with:
deno task dev