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 9f3cefb commit 1e72b0eCopy full SHA for 1e72b0e
packages/nx-plugin/src/plugin/plugin.ts
@@ -48,7 +48,7 @@ export const createNodesV2: CreateNodesV2<CreateNodesOptions> = [
48
): Promise<CreateNodesResultV2> => {
49
const parsedCreateNodesOptions = createNodesOptions as CreateNodesOptions;
50
51
- const results = await Promise.all(
+ return await Promise.all(
52
projectConfigurationFiles.map(async projectConfigurationFile => {
53
const normalizedContext = await normalizedCreateNodesV2Context(
54
context,
@@ -67,7 +67,5 @@ export const createNodesV2: CreateNodesV2<CreateNodesOptions> = [
67
return [projectConfigurationFile, result] as const;
68
}),
69
);
70
-
71
- return results;
72
},
73
];
0 commit comments