Files
deno_make/tests/deno_make.jsonc
2023-11-02 20:24:29 -04:00

36 lines
708 B
JSON

{
"tasks": {
"make": "deno run --allow-env --allow-read --allow-write=.deno-make.json --allow-run=deno ./mod.ts $0"
},
"+tasks": {
"make:empty": {
"task": "deno help"
},
"make:task": {
"task": "deno info",
"cwd": "tests",
"description": "🦕 test",
"deno": {
"info": {
"quiet": true
}
},
"env": {
"DINOSAUR": "🦖",
"TEST_INHERIT": true
}
},
"make:multiline": {
"task": ["deno help"],
"cwd": "tests",
"description": ["🦕 test"]
},
"make:exit": {
"task": "exit 1"
},
"make:rm_deno_make_json": {
"task": "rm -r .deno-make.json"
}
}
}