mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
efcabce1c1
This commit remove `--lock-write` that was deprecated in v1.45 release. Closes https://github.com/denoland/deno/issues/24167. --------- Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com>
13 lines
259 B
Text
13 lines
259 B
Text
{
|
|
"tempDir": true,
|
|
"steps": [{
|
|
"args": "cache --lock --frozen=false main.ts",
|
|
"output": "main.cache.out"
|
|
}, {
|
|
"args": [
|
|
"eval",
|
|
"console.log(Deno.readTextFileSync('deno.lock').trim())"
|
|
],
|
|
"output": "deno.lock.out"
|
|
}]
|
|
}
|