Skip to content

dominicletz/mix_rebar3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MixRebar3

Mix plugin to run rebar3 as a compiler for your project. Useful if your project is using rebar3 for compiling (e.g. native components) but you also want to use mix for other features such as generating docs.

Installation

Just add mix_rebar3 to your deps in mix.exs and replace your compilers with :rebar3

def project do
  [
    compilers: [:rebar3],
  ]
end

def deps do
  [
    {:mix_rebar3, "~> 0.1.0"}
  ]
end

About

Use rebar3 as compiler for your mix projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages