index : pandoc | |
Hex package with a file-watcher and Mix task for using Pandoc to convert Markdown files to HTML. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-12-11 16:59:15 -0800 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-12-11 16:59:15 -0800 |
commit | 9e8392a939825a8920004922d51b123b1a92b6b9 (patch) | |
tree | 5ac4028d1838275ae1b917d72852e8f5e5fd7842 /mix.exs | |
parent | 9d9a9bb13e99332a1fbe65d807b83bd1824eda5f (diff) |
Get path from config in mix task
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -8,7 +8,7 @@ defmodule Pandoc.MixProject do elixir: "~> 1.14", deps: deps(), description: "Pandoc", - package: [] + package: [links: [], licenses: ["MIT"]] ] end @@ -23,7 +23,8 @@ defmodule Pandoc.MixProject do # Run "mix help deps" to learn about dependencies. defp deps do [ - {:file_system, "~> 1.0"} + {:file_system, "~> 1.0"}, + {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end end |