mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
7c036772df
Refs: https://github.com/denoland/deno/issues/26852 Initial support for exporting metrics. Co-authored-by: Luca Casonato <hello@lcas.dev>
24 lines
468 B
Text
24 lines
468 B
Text
{
|
|
"steps": [
|
|
{
|
|
"args": "run -A main.ts basic.ts",
|
|
"output": "basic.out"
|
|
},
|
|
{
|
|
"args": "run -A main.ts natural_exit.ts",
|
|
"output": "natural_exit.out"
|
|
},
|
|
{
|
|
"args": "run -A main.ts deno_dot_exit.ts",
|
|
"output": "deno_dot_exit.out"
|
|
},
|
|
{
|
|
"args": "run -A main.ts uncaught.ts",
|
|
"output": "uncaught.out"
|
|
},
|
|
{
|
|
"args": "run -A main.ts metric.ts",
|
|
"output": "metric.out"
|
|
}
|
|
]
|
|
}
|