mirror of
https://github.com/denoland/deno.git
synced 2024-12-02 17:01:14 -05:00
26 lines
471 B
Text
26 lines
471 B
Text
|
{
|
||
|
"tempDir": true,
|
||
|
"envs": {
|
||
|
"DENO_FUTURE": "1"
|
||
|
},
|
||
|
"steps": [
|
||
|
{
|
||
|
"args": "install npm:@denotest/deprecated-package",
|
||
|
"output": "install.out"
|
||
|
},
|
||
|
{
|
||
|
// make sure the dep got cached
|
||
|
"args": "run --cached-only main.js",
|
||
|
"exitCode": 0,
|
||
|
"output": ""
|
||
|
},
|
||
|
{
|
||
|
"args": [
|
||
|
"eval",
|
||
|
"console.log(Deno.readTextFileSync('package.json').trim())"
|
||
|
],
|
||
|
"output": "package.json.out"
|
||
|
}
|
||
|
]
|
||
|
}
|