Packages

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

Current section

Files

Jump to
ez_calendar lib mix tasks sass.ex
Raw

lib/mix/tasks/sass.ex

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