vercel 39.0.1 → 39.0.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/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -156166,7 +156166,7 @@ async function status(client2) {
|
|
156166
156166
|
`);
|
156167
156167
|
const learnMoreMessage = `
|
156168
156168
|
|
156169
|
-
Learn more: ${import_chalk117.default.cyan(
|
156169
|
+
Learn more: ${import_chalk117.default.cyan("https://vercel.com/docs/cli/about-telemetry")}`;
|
156170
156170
|
if (enabled) {
|
156171
156171
|
output_manager_default.log(`You have opted in to Vercel CLI telemetry${learnMoreMessage}`);
|
156172
156172
|
} else {
|
@@ -157599,6 +157599,9 @@ function checkTelemetryStatus({ config: config2 }) {
|
|
157599
157599
|
if (config2.telemetry) {
|
157600
157600
|
return;
|
157601
157601
|
}
|
157602
|
+
if (process.env.VERCEL_TELEMETRY_DISABLED) {
|
157603
|
+
return;
|
157604
|
+
}
|
157602
157605
|
output_manager_default.note(
|
157603
157606
|
"The Vercel CLI now collects telemetry regarding usage of the CLI."
|
157604
157607
|
);
|