/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/task/input_cache/deno.json
31 строка
699 B
Bartek Iwańczuk
feat(task): input-based caching with files/output/env (#34509)
24 июн 2026, 09:33
Не верифицирован
24 июн 2026, 09:33
72497f3
Код
Авторство
О чём код?
{ "tasks": { "build": { "command": "deno run src/in.ts", "files": ["src/**/*.ts"] }, "with_env": { "command": "deno run src/in.ts", "files": ["src/**/*.ts"], "env": ["MY_VAR"] }, "no_inputs": { "command": "deno run src/in.ts", "files": ["does-not-exist/**/*.ts"] }, "build_out": { "command": "deno run -A src/gen.ts", "files": ["src/gen.ts"], "output": ["dist/**"] }, "dep": { "command": "deno run src/dep_in.ts", "files": ["src/dep_in.ts"] }, "downstream": { "command": "deno run src/down_in.ts", "files": ["src/down_in.ts"], "dependencies": ["dep"] } } }