mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
23bb0abc23
`deno task` has been in use for a few months now. It was very well received and there are not many complaints. I feel like this warning might be discouraging for some users and we don't really plan to make drastic changes to it (besides adding support for globs in unspecified future).
18 lines
558 B
Text
18 lines
558 B
Text
Task not found: non_existent
|
|
Available tasks:
|
|
- boolean_logic
|
|
sleep 0.1 && echo 3 && echo 4 & echo 1 && echo 2 || echo NOPE
|
|
- deno_echo
|
|
deno eval 'console.log(5)'
|
|
- echo
|
|
echo 1
|
|
- echo_cwd
|
|
echo $(pwd)
|
|
- echo_init_cwd
|
|
echo $INIT_CWD
|
|
- exit_code_5
|
|
echo $(echo 10 ; exit 2) && exit 5
|
|
- piped
|
|
echo 12345 | (deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)' && deno eval 'const b = new Uint8Array(1);Deno.stdin.readSync(b);console.log(b)')
|
|
- strings
|
|
deno run main.ts && deno eval "console.log(\"test\")"
|