mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
17 lines
432 B
Text
17 lines
432 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"steps": [{
|
||
|
"args": ["add", "@std/assert", "@std/http"],
|
||
|
"output": "add.out"
|
||
|
}, {
|
||
|
"args": ["eval", "console.log(Deno.readTextFileSync('deno.lock').trim())"],
|
||
|
"output": "add_lock.out"
|
||
|
}, {
|
||
|
"args": ["remove", "@std/assert", "@std/http"],
|
||
|
"output": "rm.out"
|
||
|
}, {
|
||
|
"args": ["eval", "console.log(Deno.readTextFileSync('deno.lock').trim())"],
|
||
|
"output": "remove_lock.out"
|
||
|
}]
|
||
|
}
|