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
- Host: GitHub
- URL: https://github.com/ferd/rebar3-alias
- Owner: ferd
- License: other
- Created: 2015-03-29T22:25:29.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-29T22:50:29.000Z (about 10 years ago)
- Last Synced: 2025-01-21T01:25:19.353Z (3 months ago)
- Language: Erlang
- Size: 117 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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