From 8c69ca7ed676c10e83815783acc5fbea0daa3c06 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Mon, 27 Nov 2023 10:56:36 -0500 Subject: [PATCH] fix(types): IOSScriptPhase accepts "always_out_of_date" This is useful to quiet the `pod install` warning: "Run script build phase 'Create Symlinks to Header Folders' will be run during every build because..." --- packages/cli-types/src/ios.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/cli-types/src/ios.ts b/packages/cli-types/src/ios.ts index 205a7d4f5..a893d9b4d 100644 --- a/packages/cli-types/src/ios.ts +++ b/packages/cli-types/src/ios.ts @@ -48,6 +48,7 @@ export type IOSScriptPhase = ({script: string} | {path: string}) & { input_file_lists?: string[]; output_file_lists?: string[]; show_env_vars_in_log?: boolean; - dependency_file?: string; execution_position?: 'before_compile' | 'after_compile' | 'any'; + dependency_file?: string; + always_out_of_date?: string; };