File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 88 on the Erlang target.
99 ([ Giacomo Cavalieri] ( https://github.com/giacomocavalieri ) )
1010
11- - Analysis it now fault tolerant in the presence of errors in field definitions
11+ - Analysis is now fault tolerant in the presence of errors in field definitions
1212 of custom type variants.
1313 ([ Adi Salimgereyev] ( https://github.com/abs0luty ) )
1414
2323 going to run.
2424 ([ Giacomo Cavalieri] ( https://github.com/giacomocavalieri ) )
2525
26+ - The ` --invert ` and ` --package ` options of ` gleam deps tree ` are now mutually
27+ exclusive; if both options are given the command will fail. Previously,
28+ ` --invert ` would be silently ignored if given together with ` --package ` .
29+ ([ Evan Silberman] ( https://github.com/silby ) )
30+
2631### Language server
2732
2833- The "inline variable" code action can now trigger when used over the let
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ struct TreeOptions {
111111 short,
112112 long,
113113 ignore_case = true ,
114+ conflicts_with = "invert" ,
114115 help = "Package to be used as the root of the tree"
115116 ) ]
116117 package : Option < String > ,
@@ -119,6 +120,7 @@ struct TreeOptions {
119120 short,
120121 long,
121122 ignore_case = true ,
123+ conflicts_with = "package" ,
122124 help = "Invert the tree direction and focus on the given package" ,
123125 value_name = "PACKAGE"
124126 ) ]
You can’t perform that action at this time.
0 commit comments