@distributionos/cli 0.1.3 → 0.1.4
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 +1 -1
- package/src/plan.js +3 -3
package/package.json
CHANGED
package/src/plan.js
CHANGED
|
@@ -311,9 +311,9 @@ function analyticsSummary(analytics) {
|
|
|
311
311
|
if (analytics.status === 'enabled') {
|
|
312
312
|
return `contract ${analytics.contractVersion}; install script in ${analytics.layoutTarget ?? 'reviewed shared layout'}`;
|
|
313
313
|
}
|
|
314
|
-
if (analytics.status === 'disabled') {
|
|
315
|
-
return 'tracker
|
|
316
|
-
}
|
|
314
|
+
if (analytics.status === 'disabled') {
|
|
315
|
+
return 'tracker will be created or fetched during apply before analytics is installed';
|
|
316
|
+
}
|
|
317
317
|
return 'contract not fetched; print manual guidance only';
|
|
318
318
|
}
|
|
319
319
|
|