dev-cockpit 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -271,10 +271,19 @@
|
|
|
271
271
|
"type": "string",
|
|
272
272
|
"minLength": 1,
|
|
273
273
|
"maxLength": 1,
|
|
274
|
-
"description": "Single key character that fires the action when the row is focused or the palette is open."
|
|
274
|
+
"description": "Single key character that fires the action when the row is focused or the palette is open. REQUIRED for scope: repos / repos:<id> — the per-row action panel can only surface key-bound actions."
|
|
275
275
|
}
|
|
276
276
|
},
|
|
277
|
-
"additionalProperties": false
|
|
277
|
+
"additionalProperties": false,
|
|
278
|
+
"allOf": [
|
|
279
|
+
{
|
|
280
|
+
"if": {
|
|
281
|
+
"properties": { "scope": { "type": "string", "pattern": "^repos(:.*)?$" } },
|
|
282
|
+
"required": ["scope"]
|
|
283
|
+
},
|
|
284
|
+
"then": { "required": ["key"] }
|
|
285
|
+
}
|
|
286
|
+
]
|
|
278
287
|
}
|
|
279
288
|
}
|
|
280
289
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev-cockpit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "A reusable, domain-neutral terminal UI dev cockpit — tabbed pane shell, watcher streaming, optional Docker log tail with highlights, health framework with one-keystroke remediations, transition-only OS notifications, live-markdown Help. Profiles extend it with project-specific commands, repos, and health checks.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|