An open API service indexing awesome lists of open source software.

https://github.com/ferd/rebar3-alias

Rebar3 Alias Plugin
https://github.com/ferd/rebar3-alias

Last synced: about 1 month ago
JSON representation

Rebar3 Alias Plugin

Awesome Lists containing this project

README

        

alias
=====

Runs an aliased command. Aliases can be declared as:

```erlang
{alias, [
{renamed, ["help"]},
{cleanall, ["clean", "-a"]},
{testall, ["do", "ct,", "eunit,", "cover"]},
{validate, ["do", "ct,", "eunit,", "dialyzer"]},
]}.
```

Use
---

Add the plugin to your rebar config:

{plugins, [
{alias, {git, "https://github.com/ferd/rebar3-alias.git"}}
]}.

Then just call your plugin directly in an existing application:

$ rebar3 alias
===> Fetching alias
===> Compiling alias