swift_package_clean
Removes Swift Package build artifacts and derived data to free up storage and maintain a clean development environment. Specify the package path to execute the cleanup.
Instructions
Cleans Swift Package build artifacts and derived data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packagePath | Yes | Path to the Swift package root (Required) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packagePath": {
"description": "Path to the Swift package root (Required)",
"type": "string"
}
},
"required": [
"packagePath"
],
"type": "object"
}