Packages

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

Current section

Files

Jump to
ez_calendar lib mix tasks scss.ex
Raw

lib/mix/tasks/scss.ex

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