Mix.Tasks.Compile
A meta task that compiles source files. It simply runs the compilers registered in your project. At the end of compilation it ensures load paths are set.
Configuration
:compilers- compilers to be run, defaults to:[:elixir, :app]It can be configured to handle custom compilers, for example:
[compilers: [:elixir, :mycompiler, :app]]
Command line options
--list- List all enabled compilers.
Remaining options are forwarded to underlying compilers.
Summary
| manifests() | Returns manifests for all compilers |
| run(args) | Runs this compile task by recursively calling all registered compilers |