ni
ni copied to clipboard
Support Deno task
Clear and concise description of the problem
What
Support Deno task
Why
Deno support tasks on deno.json which is similar with "scripts" on package.json. More detail on https://deno.land/[email protected]/tools/task_runner
For example:
{ "tasks": { "data": "deno task collect && deno task analyze", "collect": "deno run --allow-read=. --allow-write=. scripts/collect.js", "analyze": "deno run --allow-read=. scripts/analyze.js" } }
Suggested solution
How
We could detect that's running inside Deno project if has deno.json
Alternative
No response
Additional context
No response
Validations
- [X] Follow our Code of Conduct
- [X] Read the Contributing Guide.
- [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.