8
8
defmodule Mix.Dep.Loader do
9
9
@ moduledoc false
10
10
11
- import Mix.Dep , only: [ ok?: 1 , mix?: 1 , rebar?: 1 , make?: 1 ]
11
+ import Mix.Dep , only: [ ok?: 1 , mix?: 1 , rebar?: 1 , make?: 1 , gleam?: 1 ]
12
12
13
13
@ doc """
14
14
Gets all direct children of the current `Mix.Project`
@@ -84,9 +84,9 @@ defmodule Mix.Dep.Loader do
84
84
def load ( % Mix.Dep { manager: manager , scm: scm , opts: opts } = dep , children , locked? ) do
85
85
# The manager for a child dependency is set based on the following rules:
86
86
# 1. Set in dependency definition
87
- # 2. From SCM, so that Hex dependencies of a rebar project can be compiled with mix
87
+ # 2. From SCM, so that Hex dependencies of a rebar/gleam project can be compiled with mix
88
88
# 3. From the parent dependency, used for rebar dependencies from git
89
- # 4. Inferred from files in dependency (mix.exs, rebar.config, Makefile)
89
+ # 4. Inferred from files in dependency (mix.exs, rebar.config, Makefile, gleam.toml )
90
90
manager = opts [ :manager ] || scm_manager ( scm , opts ) || manager || infer_manager ( opts [ :dest ] )
91
91
dep = % { dep | manager: manager , status: scm_status ( scm , opts ) }
92
92
@@ -106,6 +106,9 @@ defmodule Mix.Dep.Loader do
106
106
make? ( dep ) ->
107
107
make_dep ( dep )
108
108
109
+ gleam? ( dep ) ->
110
+ gleam_dep ( dep , children , locked? )
111
+
109
112
true ->
110
113
{ dep , [ ] }
111
114
end
@@ -220,7 +223,7 @@ defmodule Mix.Dep.Loader do
220
223
221
224
# Note that we ignore Make dependencies because the
222
225
# file based heuristic will always figure it out.
223
- @ scm_managers ~w( mix rebar3) a
226
+ @ scm_managers ~w( mix rebar3 gleam ) a
224
227
225
228
defp scm_manager ( scm , opts ) do
226
229
managers = scm . managers ( opts )
@@ -246,6 +249,9 @@ defmodule Mix.Dep.Loader do
246
249
any_of? ( dest , [ "Makefile" , "Makefile.win" ] ) ->
247
250
:make
248
251
252
+ any_of? ( dest , [ "gleam.toml" ] ) ->
253
+ :gleam
254
+
249
255
true ->
250
256
nil
251
257
end
@@ -361,6 +367,19 @@ defmodule Mix.Dep.Loader do
361
367
{ dep , [ ] }
362
368
end
363
369
370
+ defp gleam_dep ( % Mix.Dep { opts: opts } = dep , children , locked? ) do
371
+ deps =
372
+ if children do
373
+ Enum . map ( children , & to_dep ( & 1 , opts [ :dest ] , _manager = nil , locked? ) )
374
+ else
375
+ config = File . cd! ( opts [ :dest ] , fn -> Mix.Gleam . load_config ( "." ) end )
376
+ from = Path . join ( opts [ :dest ] , "gleam.toml" )
377
+ Enum . map ( config [ :deps ] , & to_dep ( & 1 , from , _manager = nil , locked? ) )
378
+ end
379
+
380
+ { dep , deps }
381
+ end
382
+
364
383
defp mix_children ( config , locked? , opts ) do
365
384
from = Mix.Project . project_file ( )
366
385
0 commit comments