mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
21 lines
390 B
Text
21 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"
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|