mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
1667e28a15
Closes https://github.com/denoland/deno/issues/23906 --------- Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
20 lines
390 B
Text
20 lines
390 B
Text
{
|
|
"steps": [
|
|
{
|
|
// Notice `--unstable-*` flags are not needed anymore
|
|
"args": "run -A main.js",
|
|
"output": "main.out",
|
|
"envs": {
|
|
"DENO_FUTURE": "1"
|
|
}
|
|
},
|
|
{
|
|
// Notice `--unstable-*` flags are not needed anymore
|
|
"args": "run -A worker.js",
|
|
"output": "main.out",
|
|
"envs": {
|
|
"DENO_FUTURE": "1"
|
|
}
|
|
}
|
|
]
|
|
}
|