clean_proj
Removes build artifacts from Xcode projects using xcodebuild. Specify the project path; optional inputs include scheme, configuration, derived data path, and extra arguments.
Instructions
Cleans build products for a specific project file using xcodebuild. IMPORTANT: Requires projectPath. Scheme/Configuration are optional. Example: clean_proj({ projectPath: '/path/to/MyProject.xcodeproj', scheme: 'MyScheme' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configuration | No | Optional: Build configuration to clean (Debug, Release, etc.) | |
derivedDataPath | No | Optional: Path where derived data might be located | |
extraArgs | No | Additional xcodebuild arguments | |
projectPath | Yes | Path to the .xcodeproj file (Required) | |
scheme | No | Optional: The scheme to clean |