We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deno v2.1 adds task dependencies 🎉 I've been missing them from Turborepo for so long, but no more!
Currently, however, the following configuration gives an error:
{ "tasks": { "check": { "dependencies": ["format", "typecheck"] }, "format": "biome format", "typecheck": "deno check **/*.ts **/*.tsx" }, }
I instead need a dummy "command": "sleep 0" line, which then shows up in the Deno task output. It'd be nice to relax this constraint.
"command": "sleep 0"
The text was updated successfully, but these errors were encountered:
Duplicate of #27165
Sorry, something went wrong.
No branches or pull requests
Deno v2.1 adds task dependencies 🎉
I've been missing them from Turborepo for so long, but no more!
Currently, however, the following configuration gives an error:
I instead need a dummy
"command": "sleep 0"
line, which then shows up in the Deno task output. It'd be nice to relax this constraint.The text was updated successfully, but these errors were encountered: