We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28c48dd commit f8c425aCopy full SHA for f8c425a
packages/nx-plugin/src/plugin/target/executor-target.ts
@@ -9,9 +9,9 @@ export function createExecutorTarget(options?: {
9
const { bin, projectPrefix } = options ?? {};
10
11
const executor = `${PACKAGE_NAME}:cli`;
12
- const options = (bin || projectPrefix) && {
+ const executorOptions = (bin || projectPrefix) && {
13
...(bin && { bin }),
14
...(projectPrefix && { projectPrefix }),
15
};
16
- return { executor, ...(options && { options })};
+ return { executor, ...(executorOptions && { options: executorOptions }) };
17
}
0 commit comments