We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bba9cd commit 47bc389Copy full SHA for 47bc389
1 file changed
packages/nx-plugin/src/plugin/target/executor-target.ts
@@ -14,11 +14,11 @@ export function createExecutorTarget(
14
} = options ?? {};
15
return {
16
executor: `${pluginBin}:cli`,
17
- ...(projectPrefix
+ ...(cliBin || projectPrefix || env
18
? {
19
options: {
20
- projectPrefix,
21
...(cliBin ? { bin: cliBin } : {}),
+ ...(projectPrefix ? { projectPrefix } : {}),
22
...(env ? { env } : {}),
23
},
24
}
0 commit comments