@poncho-ai/cli 0.33.1 → 0.33.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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +6 -0
- package/dist/{chunk-IDGGF5WH.js → chunk-QAUWCAWU.js} +485 -810
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1 -1
- package/dist/{run-interactive-ink-R4PHKIQR.js → run-interactive-ink-VS35YSBB.js} +1 -1
- package/package.json +3 -3
- package/src/index.ts +586 -923
- package/src/init-onboarding.ts +2 -7
package/src/init-onboarding.ts
CHANGED
|
@@ -408,7 +408,6 @@ export const isDefaultOnboardingConfig = (
|
|
|
408
408
|
const telemetryEnabled = config.telemetry?.enabled ?? true;
|
|
409
409
|
const telemetryHasExtra =
|
|
410
410
|
typeof config.telemetry?.otlp !== "undefined" ||
|
|
411
|
-
typeof config.telemetry?.latitude !== "undefined" ||
|
|
412
411
|
typeof config.telemetry?.handler !== "undefined";
|
|
413
412
|
if (!telemetryEnabled || telemetryHasExtra) {
|
|
414
413
|
return false;
|
|
@@ -536,12 +535,8 @@ const collectEnvFileLines = (answers: OnboardingAnswers): string[] => {
|
|
|
536
535
|
|
|
537
536
|
const telemetryEnabled = Boolean(answers["telemetry.enabled"] ?? true);
|
|
538
537
|
if (telemetryEnabled) {
|
|
539
|
-
lines.push("# Telemetry (optional)");
|
|
540
|
-
lines.push("#
|
|
541
|
-
lines.push("# If not using Latitude yet, you can leave these empty.");
|
|
542
|
-
lines.push("LATITUDE_API_KEY=");
|
|
543
|
-
lines.push("LATITUDE_PROJECT_ID=");
|
|
544
|
-
lines.push("LATITUDE_PATH=");
|
|
538
|
+
lines.push("# Telemetry (optional) — set an OTLP endpoint to export traces");
|
|
539
|
+
lines.push("# OTEL_EXPORTER_OTLP_ENDPOINT=");
|
|
545
540
|
lines.push("");
|
|
546
541
|
}
|
|
547
542
|
|