how to load env variables from .env file in task
the
source
shell command is not available. I tried
is that correct? it's not working now. Where can I see what commands are available in tasks?3 Replies
The commands inside tasks are run in your shell, with the addition that some of our own ones are added there when running a task. So which commands are available depends entirely on your machine and what you have installed over the duration of using it.
Cross-OS commands: https://docs.deno.com/runtime/manual/tools/task_runner#built-in-commands
deno task | Deno Docs
deno task provides a cross platform way to define and execute custom commands
Thanks!:hooray_deno: