fix: force compile dependencies.

Having problems with ash_json_api's optional dependence on open_api_spex
and this solves it. We really need to figure out how to do this incremental
dependency compilation fluidly, just takes someone more familiar w/ invoking
the compiler/mix
This commit is contained in:
Zach Daniel 2024-07-22 16:12:20 -04:00
parent bfe50c6cac
commit 0adb5ad23c

View file

@ -41,7 +41,7 @@ defmodule Igniter.Util.DepsCompile do
Mix.Project.get!()
deps = Mix.Dep.load_and_cache()
opts = [include_children: true]
opts = [include_children: true, force: true]
compile(filter_available_and_local_deps(deps), opts)
end