Hash :
44bc8089
Author :
Date :
2021-09-23T09:15:58
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
defmodule Mix.Tasks.Sass.Install do
@moduledoc """
Installs dart-sass under `_build`.
```bash
$ mix sass.install
$ mix sass.install --if-missing
```
By default, it installs #{DartSass.latest_version()} but you
can configure it in your config files, such as:
config :dart_sass, :version, "#{DartSass.latest_version()}"
## Options
* `--runtime-config` - load the runtime configuration
before executing command
* `--if-missing` - install only if the given version
does not exist
"""
@shortdoc "Installs dart-sass under _build"
use Mix.Task
@impl true
def run(args) do
valid_options = [runtime_config: :boolean, if_missing: :boolean]
case OptionParser.parse_head!(args, strict: valid_options) do
{opts, []} ->
if opts[:runtime_config], do: Mix.Task.run("app.config")
if opts[:if_missing] && latest_version?() do
:ok
else
if Code.ensure_loaded?(Mix.Tasks.App.Config) do
Mix.Task.run("app.config")
end
DartSass.install()
end
{_, _} ->
Mix.raise("""
Invalid arguments to sass.install, expected one of:
mix sass.install
mix sass.install --runtime-config
mix sass.install --if-missing
""")
end
end
defp latest_version?() do
version = DartSass.configured_version()
match?({:ok, ^version}, DartSass.bin_version())
end
end