Equivalent of npm run <script>
?
#9753
-
Could not find any info on it, but I'd like to run aliased commands like Is there some kind of an equivalent of If not, is there any plans to have something like this in the future, or has it been ruled out/already discussed and we need to rely on third party modules? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
there are some cli that solve these problems: https://deno.land/x/trex@v1.5.0#run-scripts-experimental |
Beta Was this translation helpful? Give feedback.
-
You can use a |
Beta Was this translation helpful? Give feedback.
-
Deno 1.20 added (unstable) task runner support: https://deno.land/manual/tools/task_runner The quickest way to try it out is to create a {
"tasks": {
"start": "deno run ./main.ts"
}
} And run those tasks with with: deno task start |
Beta Was this translation helpful? Give feedback.
there are some cli that solve these problems:
https://deno.land/x/trex@v1.5.0#run-scripts-experimental
https://deno.land/x/denox@0.4.0
https://deno.land/x/velociraptor@1.0.0-beta.17