39 lines
709 B
JSON
39 lines
709 B
JSON
{
|
|
"tasks": {
|
|
"make": "deno run --allow-env --allow-read --allow-write=.deno-make.json --allow-run=deno ./mod.ts $0"
|
|
},
|
|
"+tasks": {
|
|
"flags:none": {
|
|
"task": "deno doc mod.ts",
|
|
"cwd": "tests",
|
|
"deno": {
|
|
"doc": {}
|
|
}
|
|
},
|
|
"flags:doc": {
|
|
"task": "deno doc mod.ts",
|
|
"cwd": "tests",
|
|
"deno": {
|
|
"doc": {
|
|
"private": true,
|
|
"json": true
|
|
}
|
|
}
|
|
},
|
|
"flags:doc_alt": {
|
|
"task": [
|
|
"deno doc mod.ts;",
|
|
"rm -rf .docs"
|
|
],
|
|
"cwd": "tests",
|
|
"deno": {
|
|
"doc": {
|
|
"html": true,
|
|
"name": "test",
|
|
"output": ".docs"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|