elixir_script v0.26.1 Mix.Tasks.Elixirscript.Watch

Watches ElixirScript files for changes

Looks for the elixir_script key in your mix project config

def project do

[
  app: :my_app,
  version: "0.1.0",
  elixir: "~> 1.0",
  deps: deps,
  elixir_script: [ input: "src/exjs", output: "dest/js"],
  compilers: [:elixir_script] ++ Mix.compilers
]

end

Summary

Functions

A task needs to implement run which receives a list of command line args

Functions

run()

A task needs to implement run which receives a list of command line args.

Callback implementation for Mix.Task.run/1.