update_component
Generate update commands for Starwind UI components using specified package managers, including options for additional components and customization.
Instructions
Generates update commands for Starwind UI components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
additionalComponents | No | Additional components to update | |
component | Yes | Component name to update | |
options | No | Additional options for updating (e.g., '--all' to update all components, '--yes' to skip confirmation prompts) | |
packageManager | No | Package manager to use (npm, yarn, pnpm) |
Input Schema (JSON Schema)
{
"properties": {
"additionalComponents": {
"description": "Additional components to update",
"items": {
"type": "string"
},
"type": "array"
},
"component": {
"description": "Component name to update",
"type": "string"
},
"options": {
"description": "Additional options for updating (e.g., '--all' to update all components, '--yes' to skip confirmation prompts)",
"items": {
"type": "string"
},
"type": "array"
},
"packageManager": {
"description": "Package manager to use (npm, yarn, pnpm)",
"enum": [
"npm",
"yarn",
"pnpm"
],
"type": "string"
}
},
"required": [
"component"
],
"type": "object"
}