Skip to content

Commit

Permalink
fix(types): IOSScriptPhase accepts "always_out_of_date" (#2182)
Browse files Browse the repository at this point in the history
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..."
  • Loading branch information
mikehardy authored Nov 28, 2023
1 parent 2486e49 commit 189b975
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cli-types/src/ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

0 comments on commit 189b975

Please sign in to comment.