@celilo/cli 0.3.9 → 0.3.11
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@celilo/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "Celilo — home lab orchestration CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@aws-sdk/client-s3": "^3.1024.0",
|
|
55
55
|
"@celilo/capabilities": "^0.1.10",
|
|
56
|
-
"@celilo/cli-display": "^0.1.
|
|
56
|
+
"@celilo/cli-display": "^0.1.8",
|
|
57
57
|
"@celilo/event-bus": "^0.1.4",
|
|
58
58
|
"@clack/prompts": "^1.1.0",
|
|
59
59
|
"ajv": "^8.18.0",
|
|
@@ -782,6 +782,11 @@ async function deployModuleImpl(
|
|
|
782
782
|
}
|
|
783
783
|
}
|
|
784
784
|
|
|
785
|
+
// Mirror the infrastructure-path success message at the end of
|
|
786
|
+
// a successful deploy. Without this, config-only deploys end
|
|
787
|
+
// abruptly with whatever the last hook line was — operator sees
|
|
788
|
+
// no clear "this finished cleanly" signal.
|
|
789
|
+
log.success(`Module '${moduleId}' deployed successfully`);
|
|
785
790
|
return {
|
|
786
791
|
success: true,
|
|
787
792
|
phases: {
|