mirror of
https://github.com/denoland/deno.git
synced 2024-12-13 02:52:54 -05:00
14 lines
249 B
JSON
14 lines
249 B
JSON
|
{
|
||
|
"tasks": {
|
||
|
"build1": "deno run ../build1.js",
|
||
|
"build2": {
|
||
|
"command": "deno run ../build2.js",
|
||
|
"dependencies": ["build1"]
|
||
|
},
|
||
|
"run": {
|
||
|
"command": "deno run ../run.js",
|
||
|
"dependencies": ["build2"]
|
||
|
}
|
||
|
}
|
||
|
}
|