elekram
Chaining Tasks and using --watch
Is there a way to chain Deno tasks or something to that accord? I'd like to run esbuild from the command line to bundle/transpile some client JS and then have Deno start my dev webserver in watch mode. So each time a file is touched it runs esbuild and then Deno again.
11 replies
How to get Deno to fmt on save with VSCode?
I have a deno.json file with some fmt options which works if run fromt the command line but not when saving in VSCode.
The belowe settings are set
{
"deno.enable": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "denoland.vscode-deno"
}
9 replies
Why doesn't latest Deno standard library for encoding CSV files support StringifyOptions?
I need to remove headers see:
https://deno.land/std@0.167.0/encoding/csv.ts?s=stringify
6 replies