Current section

Files

Jump to
bundlex lib bundlex output.ex
Raw

lib/bundlex/output.ex

defmodule Bundlex.Output do
def info(msg) do
Mix.shell().info("Bundlex: " <> msg)
end
def info_main(msg) do
info("!!! " <> msg)
end
def info_stage(msg) do
info("### " <> msg)
end
def info_substage(msg) do
info(" - " <> msg)
end
def raise(msg) do
Mix.raise("Bundlex: " <> msg)
end
end