From cc4e8c188591addb813bcc0cca5e55cd1ca8eb83 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Thu, 7 Apr 2022 18:57:36 -0400 Subject: [PATCH] fix(core): fix typings in params (#9735) --- packages/nx/src/utils/params.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nx/src/utils/params.ts b/packages/nx/src/utils/params.ts index 554ecdd1b2301..1a909cb606776 100644 --- a/packages/nx/src/utils/params.ts +++ b/packages/nx/src/utils/params.ts @@ -64,7 +64,7 @@ export type Unmatched = { export type Options = { '--'?: Unmatched[]; - [k: string]: string | number | boolean | string[] | Unmatched[]; + [k: string]: string | number | boolean | string[] | Unmatched[] | undefined; }; export async function handleErrors(isVerbose: boolean, fn: Function) {