Have built myself a CLI tool for my more generic projects using Deno. It's useful, does the stuff I need it to do. However, I'm looking into achieving something similar to npm install -g <my-git-repo> but with Deno.
I understand I could easily create a ~/.myDeno with a bash script and adding export PATH=$PATH:~/.myDeno but was wondering if there was a proper process to follow to achieve this with Deno. As I have thus far been unable to find one.