ash_csv/config/config.exs

16 lines
540 B
Elixir
Raw Normal View History

2020-08-20 16:51:23 +12:00
use Mix.Config
if Mix.env() == :dev do
config :git_ops,
2020-08-20 17:28:38 +12:00
mix_project: AshCsv.MixProject,
2020-08-20 16:51:23 +12:00
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_csv",
# Instructs the tool to manage your mix version in your `mix.exs` file
# See below for more information
manage_mix_version?: true,
# Instructs the tool to manage the version in your README.md
# Pass in `true` to use `"README.md"` or a string to customize
manage_readme_version: "README.md",
version_tag_prefix: "v"
end