feat(make): initial commit

This commit is contained in:
Simon Lecoq
2023-11-01 21:50:55 -04:00
parent c1222a8094
commit 161847bf1b
29 changed files with 1542 additions and 0 deletions

63
tests/deno_run.jsonc Normal file
View File

@@ -0,0 +1,63 @@
{
"tasks": {
"make": "deno run --allow-env --allow-read --allow-write=.deno-make.json --allow-run=deno ./mod.ts $0"
},
"+tasks": {
"flags:none": {
"task": "deno run tests/mod.ts"
},
"flags:ext": {
"task": "deno run tests/mod.ts",
"deno": {
"run": {
"ext": "ts"
}
}
},
"flags:lock_1": {
"task": "deno run tests/mod.ts",
"deno": {
"run": {
"lock": true
}
}
},
"flags:lock_2": {
"task": "deno run tests/mod.ts",
"deno": {
"run": {
"lock": false
}
}
},
"flags:lock_3": {
"task": "deno run tests/mod.ts",
"deno": {
"run": {
"lock": {
"write": false
}
}
}
},
"flags:lock_4": {
"task": "deno run tests/mod.ts",
"deno": {
"run": {
"lock": {
"file": "tests/.deno.lock",
"write": true
}
}
}
},
"flags:lock_5": {
"task": "deno run tests/mod.ts",
"deno": {
"run": {
"lock": "deno.lock"
}
}
}
}
}