From e677a1d82d68a47ff1392b1f77cc1276b4da3366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leosvel=20P=C3=A9rez=20Espinosa?= Date: Fri, 25 Feb 2022 09:18:27 +0000 Subject: [PATCH] fix(devkit): fall back to the target default config when reading target options and the config is not provided (#8932) --- packages/devkit/src/executors/read-target-options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/devkit/src/executors/read-target-options.ts b/packages/devkit/src/executors/read-target-options.ts index 39945ee7ff3da..0710a9d99d7d3 100644 --- a/packages/devkit/src/executors/read-target-options.ts +++ b/packages/devkit/src/executors/read-target-options.ts @@ -26,7 +26,7 @@ export function readTargetOptions( return combineOptionsForExecutor( {}, - configuration ?? '', + configuration ?? targetConfiguration.defaultConfiguration ?? '', targetConfiguration, schema, defaultProject,