@devrouter/cli 0.0.46 → 0.0.48
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/README.md +11 -0
- package/dist/devrouter.js +1071 -337
- package/package.json +1 -1
- package/upgrade-prompts/0.0.48.md +44 -0
package/README.md
CHANGED
|
@@ -77,6 +77,17 @@ Dev Container clients still see the full source configuration. Check
|
|
|
77
77
|
`devrouter status` or `devrouter doctor` when you need the desired, active, and
|
|
78
78
|
drift state.
|
|
79
79
|
|
|
80
|
+
Automation can inspect the same profile contract without touching a workspace,
|
|
81
|
+
Docker, DevPod, Devsy, Traefik, Git, or global state:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
devrouter profile resolve --repo . --profile manage,pwa --json
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
The report contains the canonical selection and exact apps, dependencies,
|
|
88
|
+
readiness checks, managed services, and process markers. Invalid configuration
|
|
89
|
+
or profile input fails before any runtime operation.
|
|
90
|
+
|
|
80
91
|
Use devrouter lifecycle commands for managed environments. Raw DevPod or Devsy
|
|
81
92
|
`up`/`stop`/`delete` calls bypass ownership locks and exact checkout validation.
|
|
82
93
|
Devrouter auto-detects the installed workspace runtime CLI (DevPod or Devsy) and
|