1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-13 11:35:42 +02:00

Update mix.md

This commit is contained in:
Alexey Ershov 2017-12-01 11:30:32 +03:00 committed by GitHub
parent 617eb67f7b
commit a1d1179d53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,11 +2,7 @@
> Mix is a build tool that provides tasks for creating, compiling, and testing Elixir projects, managing its dependencies, and more. > Mix is a build tool that provides tasks for creating, compiling, and testing Elixir projects, managing its dependencies, and more.
- List all mix commands: - Execute a particular file:
`mix help`
- Execute particular file:
`mix run {{my_script.exs}}` `mix run {{my_script.exs}}`
@ -18,10 +14,10 @@
`mix compile` `mix compile`
- Start an iex session inside the project:
`iex -S mix`
- Run project tests: - Run project tests:
`mix test` `mix test`
- List all mix commands:
`mix help`