Skip to content

Commit 80a9ca1

Browse files
committed
Fixes
1 parent 313c1de commit 80a9ca1

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/core/commandRunner/CommandRunner.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@ export default class CommandRunner {
6666
action.getTargetPreferences(...extraArgs)
6767
);
6868

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+
}
7173

7274
const processedTargetsContext: ProcessedTargetsContext = {
7375
currentSelections:

src/core/inferFullTargets.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ function inferPrimitiveTarget(
125125
const insideOutsideType =
126126
target.insideOutsideType ??
127127
getPreviousAttribute(previousTargetsForAttributes, "insideOutsideType") ??
128-
(doAttributeInference ? actionPreferences.insideOutsideType : null) ??
129-
"inside";
128+
actionPreferences.insideOutsideType;
130129

131130
const modifier = target.modifier ??
132131
getPreviousAttribute(previousTargetsForAttributes, "modifier") ??

0 commit comments

Comments
 (0)