elixir - Start "iex" with loading app, and run command in 1 line -


i want auto build "gulp.js" in node.js.

$ iex -s mix -e 'dribbblegif.main'

** (mix) cannot implicitly pass flags default mix task, please invoke instead: mix run

i want in 1 line command.

  1. load app
  2. start "iex"
  3. do function (dribbblegif.main)

because, want watch file this.

chokidar **/*.exs **/*.ex -c 'iex -s mix -e 'dribbblegif.main''


if have other solution auto build, please tell me it.

try:

iex -s mix run -e "dribbblegif.main" 

Comments

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -