Packages

Build calendars from ecto queries, includes view helpers for easy rendering with Phoenix

Current section

Files

Jump to
ez_calendar lib mix tasks css.ex
Raw

lib/mix/tasks/css.ex

defmodule Mix.Tasks.EzCalendar.Css do
alias Mix.Tasks.EzCalendar.StylesheetInstaller
@moduledoc """
Mix task for installing css stylesheets for EZCalendar.
"""
use Mix.Task
@shortdoc "Install css stylesheets for calendars"
def run(_) do
StylesheetInstaller.install("css")
end
end