Skip to content

Commit

Permalink
fix(core): fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammisuli committed Jul 19, 2023
1 parent cb8c147 commit 675b946
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/nx/src/tasks-runner/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,7 @@ export function getOutputsForTargetAndConfiguration(
})
.filter(
(output) =>
!!output &&
!output.match(/{(projectRoot|workspaceRoot|(options\.*))}/)
!!output && !output.match(/{(projectRoot|workspaceRoot|(options.*))}/)
);
}

Expand Down

0 comments on commit 675b946

Please sign in to comment.