File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,10 @@ export default class CommandRunner {
66
66
action . getTargetPreferences ( ...extraArgs )
67
67
) ;
68
68
69
- this . graph . debug . log ( "Full targets:" ) ;
70
- this . graph . debug . log ( JSON . stringify ( targets , null , 3 ) ) ;
69
+ if ( this . graph . debug . active ) {
70
+ this . graph . debug . log ( "Full targets:" ) ;
71
+ this . graph . debug . log ( JSON . stringify ( targets , null , 3 ) ) ;
72
+ }
71
73
72
74
const processedTargetsContext : ProcessedTargetsContext = {
73
75
currentSelections :
Original file line number Diff line number Diff line change @@ -125,8 +125,7 @@ function inferPrimitiveTarget(
125
125
const insideOutsideType =
126
126
target . insideOutsideType ??
127
127
getPreviousAttribute ( previousTargetsForAttributes , "insideOutsideType" ) ??
128
- ( doAttributeInference ? actionPreferences . insideOutsideType : null ) ??
129
- "inside" ;
128
+ actionPreferences . insideOutsideType ;
130
129
131
130
const modifier = target . modifier ??
132
131
getPreviousAttribute ( previousTargetsForAttributes , "modifier" ) ??
You can’t perform that action at this time.
0 commit comments