From 3ec8c429719a9a32238801ba3dd7c17c0b50ec72 Mon Sep 17 00:00:00 2001 From: Adam Bird Date: Fri, 4 Mar 2022 22:39:22 -0500 Subject: [PATCH] feat(config): cli.additionalPathsToClean to clean other paths with 'ns clean' (#9808) --- packages/core/config/config.interface.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/core/config/config.interface.ts b/packages/core/config/config.interface.ts index f12e6bd86..5ab21acba 100644 --- a/packages/core/config/config.interface.ts +++ b/packages/core/config/config.interface.ts @@ -100,6 +100,11 @@ interface IConfigCLI { * Defaults to the CLI set package manager, or `npm` if not set globally */ packageManager: 'yarn' | 'pnpm' | 'npm'; + + /** + * Optional files or paths to clean when running the `clean` command + */ + additionalPathsToClean?: string[]; } interface IConfigHook {