swift-package-manager
Manage, update, and resolve Swift package dependencies in Xcode projects using predefined commands like init, update, and clean. Streamline package operations for iOS development workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | SPM 명령어 (init, update, resolve, reset, clean) | |
extraArgs | No | 추가 SPM 인자들 | |
packageDir | Yes | Swift Package 디렉토리 경로 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"command": {
"description": "SPM 명령어 (init, update, resolve, reset, clean)",
"enum": [
"init",
"update",
"resolve",
"reset",
"clean"
],
"type": "string"
},
"extraArgs": {
"description": "추가 SPM 인자들",
"items": {
"type": "string"
},
"type": "array"
},
"packageDir": {
"description": "Swift Package 디렉토리 경로",
"type": "string"
}
},
"required": [
"command",
"packageDir"
],
"type": "object"
}