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.
- load app
- start "iex"
- 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
Post a Comment