From 675b946457ff12810c403d781153f24a3b168a0c Mon Sep 17 00:00:00 2001 From: Jonathan Cammisuli Date: Wed, 19 Jul 2023 16:29:40 -0400 Subject: [PATCH] fix(core): fix regex --- packages/nx/src/tasks-runner/utils.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/nx/src/tasks-runner/utils.ts b/packages/nx/src/tasks-runner/utils.ts index ff3c9c48aa1e6..704cac692aa2b 100644 --- a/packages/nx/src/tasks-runner/utils.ts +++ b/packages/nx/src/tasks-runner/utils.ts @@ -184,8 +184,7 @@ export function getOutputsForTargetAndConfiguration( }) .filter( (output) => - !!output && - !output.match(/{(projectRoot|workspaceRoot|(options\.*))}/) + !!output && !output.match(/{(projectRoot|workspaceRoot|(options.*))}/) ); }