Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
cylkdev committed Oct 30, 2023
1 parent f0c3e44 commit 2b0d3a7
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ defmodule FactoryEx.MixProject do
app: :factory_ex,
version: "0.3.3",
elixir: "~> 1.13",
description:
"Factories for elixir to help create data models at random, this works for any type of ecto structs",
description: "Factories for elixir to help create data models at random, this works for any type of ecto structs",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down Expand Up @@ -43,7 +42,7 @@ defmodule FactoryEx.MixProject do
[
{:ecto, "~> 3.0"},
{:faker, ">= 0.0.0"},
{:nimble_options, "~> 0.5"},
{:nimble_options, "~> 0.4"},
{:elixir_cache, "~> 0.3"},
{:ecto_sql, "~> 3.0", only: [:test, :dev], optional: true},
{:postgrex, "~> 0.16", only: [:test, :dev], optional: true},
Expand Down Expand Up @@ -71,10 +70,8 @@ defmodule FactoryEx.MixProject do
groups_for_modules: [
General: [
FactoryEx,
FactoryEx.SchemaCounter
],
Adapters: [
FactoryEx.Adapter
FactoryEx.SchemaCounter,
FactoryEx.FactoryCache
]
]
]
Expand Down

0 comments on commit 2b0d3a7

Please sign in to comment.