1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00
denoland-deno/tests/specs/install/install_entrypoint/__test__.jsonc
Nathan Whitaker c32d692a8f
feat(install): deno install with entrypoint (#25411)
```
deno install --entrypoint one.ts two.ts
```

effectively equivalent to `deno cache`
2024-09-04 13:06:16 -07:00

21 lines
406 B
Text

{
"tempDir": true,
"tests": {
"basic": {
"steps": [
{
"args": "install --entrypoint main.ts second.ts",
"output": "install.out"
}
]
},
"allow_scripts": {
"steps": [
{
"args": "install --allow-scripts --node-modules-dir=auto --entrypoint lifecycle.ts",
"output": "lifecycle.out"
}
]
}
}
}