This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
mebe/lib/mix/tasks/frontend.clean.ex
2017-04-04 07:29:47 +03:00

11 lines
206 B
Elixir

defmodule Mix.Tasks.Frontend.Clean do
use MBU.BuildTask
import MebeWeb.FrontendConfs
@shortdoc "Clean build artifacts"
task _ do
File.rm_rf!(tmp_path())
File.rm_rf!(dist_path())
end
end