Shared and colabrative scripts on your command.
Enva CLI enables users to define most used commands so it can be sharable and much easier to use.
$ npm install -g @enva/cliOr install it using Yarn
$ yarn global add @enva/cliEnva uses .envarc files as config files to understand what commands you're going to use in your enviroment. Here's an example:
~/.envarc
{
"commands": {
// Yarn helpers
"y": "yarn",
"yi": "yarn add $1 $", // enva yi
// Git aliases
"clone": "git clone https://github.com/${2:johndoe}/$1; cd $1;"
}
}Contributing guide on going
