mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 02:52:54 -05:00
13 lines
180 B
Text
13 lines
180 B
Text
|
{
|
||
|
"tasks": {
|
||
|
"a": {
|
||
|
"command": "deno run a.js",
|
||
|
"dependencies": ["b"]
|
||
|
},
|
||
|
"b": {
|
||
|
"command": "deno run b.js",
|
||
|
"dependencies": ["a"]
|
||
|
}
|
||
|
}
|
||
|
}
|