dev-cockpit 0.3.0 → 0.3.2
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.
- package/CHANGELOG.md +6 -0
- package/dist/commands/dev.d.ts.map +1 -1
- package/dist/commands/doctor.d.ts.map +1 -1
- package/dist/core/config.d.ts +20 -0
- package/dist/core/config.d.ts.map +1 -1
- package/dist/core/types.d.ts +6 -0
- package/dist/core/types.d.ts.map +1 -1
- package/dist/health/auto-checks.d.ts +21 -0
- package/dist/health/auto-checks.d.ts.map +1 -0
- package/dist/health/predicates/composer-drift.d.ts +31 -0
- package/dist/health/predicates/composer-drift.d.ts.map +1 -0
- package/dist/health/predicates/docker-ps.d.ts +37 -0
- package/dist/health/predicates/docker-ps.d.ts.map +1 -0
- package/dist/health/predicates/docker-unhealthy.d.ts +41 -0
- package/dist/health/predicates/docker-unhealthy.d.ts.map +1 -0
- package/dist/health/predicates/node-modules-drift.d.ts +26 -0
- package/dist/health/predicates/node-modules-drift.d.ts.map +1 -0
- package/dist/health/registry.d.ts +7 -0
- package/dist/health/registry.d.ts.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1026 -732
- package/dist/index.js.map +4 -4
- package/examples/cockpit.schema.json +16 -0
- package/package.json +1 -1
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
"$ref": "#/$defs/MountSettings",
|
|
67
67
|
"description": "Overlay/manifest path overrides. Default overlay lives at <stateDir>/dev-mount-overlay.yml (out of the repo). Set `overlayPath` when the project's compose chain (Makefile wildcard, compose -f include, etc.) expects the overlay at a fixed location."
|
|
68
68
|
},
|
|
69
|
+
"composer": {
|
|
70
|
+
"$ref": "#/$defs/ComposerSettings",
|
|
71
|
+
"description": "Composer scopes for the auto-registered `composer-drift` health check. Wrappers with nested PHP roots (Bedrock-style `project/`, monorepos, etc.) list each scope explicitly."
|
|
72
|
+
},
|
|
69
73
|
"defaultPane": {
|
|
70
74
|
"type": "string",
|
|
71
75
|
"enum": ["repos", "output", "health", "help"],
|
|
@@ -414,6 +418,18 @@
|
|
|
414
418
|
},
|
|
415
419
|
"additionalProperties": false
|
|
416
420
|
},
|
|
421
|
+
"ComposerSettings": {
|
|
422
|
+
"type": "object",
|
|
423
|
+
"properties": {
|
|
424
|
+
"packageDirs": {
|
|
425
|
+
"type": "array",
|
|
426
|
+
"items": { "type": "string" },
|
|
427
|
+
"default": ["."],
|
|
428
|
+
"description": "Workspace-relative directories that contain a `composer.lock`. The auto-registered `composer-drift` health check scans each entry for lock-vs-vendor mtime drift. `.` and `\"\"` both resolve to workspaceRoot. Example: `['.', 'project']` for a Bedrock-style wrapper with root + nested PHP scopes."
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"additionalProperties": false
|
|
432
|
+
},
|
|
417
433
|
"Action": {
|
|
418
434
|
"type": "object",
|
|
419
435
|
"required": ["id", "label", "command"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dev-cockpit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
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": {
|