Skip to content

Commit

Permalink
fix(core): cannot read properties of undefined (reading 'options') (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneKruglei authored Jul 3, 2024
1 parent 7cd35e0 commit 6e84cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nx/src/tasks-runner/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export function getOutputsForTargetAndConfiguration(
const targetConfiguration = node.data.targets[target];

const options = {
...targetConfiguration.options,
...targetConfiguration?.options,
...targetConfiguration?.configurations?.[configuration],
...overrides,
};
Expand Down

0 comments on commit 6e84cbf

Please sign in to comment.