Skip to content

Commit

Permalink
fix(core): ensure worker handles create metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentEnder committed Jun 26, 2024
1 parent 5d1ff97 commit c900c76
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/nx/src/project-graph/plugins/isolation/messaging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ export function isPluginWorkerMessage(
'createNodes',
'createDependencies',
'processProjectGraph',
'createMetadata',
].includes(message.type)
);
}
Expand All @@ -177,6 +178,7 @@ export function isPluginWorkerResult(
'createNodesResult',
'createDependenciesResult',
'processProjectGraphResult',
'createMetadataResult',
].includes(message.type)
);
}
Expand Down

0 comments on commit c900c76

Please sign in to comment.