Update 2022-04-13:
Since version 1.20 deno now includes a task runner. You can find the details in the release note: new subcommand deno task.
F...
For further actions, you may consider blocking this person and/or reporting abuse
Thanks for the article, I've been also working on a tool to replace npm scripts in Deno.
It uses YAML and currently supports permissions github.com/BentoumiTech/denox/
Looks really good. I see that it can run a selected file with the permissions, but what about random commands? Is there a plan for that?
I was able to use the code from this article and the denox package to create a similar npm feel. If you pass your script in as a string then split the script on the spaces to get your arguments it becomes much more usable.
If Khaled added a logical check on the config file to check if a file or script is being provided I'm sure we could achieve the desired outcome.
github.com/BentoumiTech/denox/pull/15 I took the liberty to add the functionality you're looking for. Denox is a pretty awesome package so hopefully, this gets picked up.
That's awesome. But I'm a little bit worried by this right here:
const args = script.split(' ');
, it doesn't handle quoted arguments. If you give it something like thisYou would get.
Would
Deno.run
handle that?That's a great observation. Do you have any suggestions on how to handle this case?
I found this package: exec. It does the same thing as that function with more options. You could use that. It only handles double quotes but it's an improvement.
If anyone is curious how they do it, here it is.
What about double quotes enclosed within single quotes, echo 'And he said: "My name is!" ${name}'. It's a contrived example but you get the gist.
For that you would get.
See, the double quotes stayed, but everything else is broken. Having a bulletproof regex is a real pain. If you want to improve it, you have to modify this
var myRegexp = /[^\s"]+|"([^"]*)"/gi;
.AFAIK, they are going to make
denox run
as alias todenox run default
, so it's even faster to type thandenox start
. Clear and concise IMO!denon
,velociraptor
, andtrex
seem promising. I think that they have more chances to be widespread.I really like the work you've done! It needs an ability to put an "on the fly" script like in package.json
I think robo is nice. YAML is so much better than JSON, only inferior to real scripts.
It does look nice. I've been using task, it also uses YAML but I think it has more features. But really like how robo handle the arguments for the subcommands.
While on the subject of task runners, a few days ago I saw this one: mask. It uses markdown files to define the options of the subcommands. I haven't use it but it looks really cool.
Hey, I turned Taskfile.js into Taskfile.ts and added some typing info. Let me know what you think.
gist.github.com/brianboyko/735c9d9...
It's awesome. May I suggest a "task" to list the other available tasks in the object. I do something like this:
Yeah, so much true. I was learning Deno and the pain of writing flags for each network or dotenv files burns me up. Was looking for a solution. Thank you for the article.
Thanks for your Article.
Here's a tutorial on how to make an Alias in PowerShell
Thanks.
I've added the alias example on powershell. I hope I got it right.