mirror of
https://github.com/forcedotcom/afv-library.git
synced 2026-07-30 03:09:50 +08:00
21 lines
628 B
JSON
21 lines
628 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||
|
|
"title": "UI Bundle Features Conflict Resolution",
|
||
|
|
"description": "Schema for conflict-resolution.json used by @salesforce/ui-bundle-features CLI",
|
||
|
|
"type": "object",
|
||
|
|
"patternProperties": {
|
||
|
|
"^.+$": {
|
||
|
|
"type": "string",
|
||
|
|
"enum": ["overwrite", "skip"],
|
||
|
|
"description": "Resolution strategy for a conflicting file path. 'overwrite' replaces the existing file, 'skip' keeps the existing file."
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"additionalProperties": false,
|
||
|
|
"examples": [
|
||
|
|
{
|
||
|
|
"src/appLayout.tsx": "overwrite",
|
||
|
|
"src/routes.tsx": "skip"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|