vercel 41.7.7 → 41.7.8

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -9
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -93382,15 +93382,8 @@ var init_telemetry = __esm({
93382
93382
  value: subcommand ? `${command}:${subcommand}` : command
93383
93383
  });
93384
93384
  }
93385
- trackCliFlagFuture(command, subcommands) {
93386
- let subcommand;
93387
- if (subcommands) {
93388
- subcommand = Array.isArray(subcommands) ? subcommands[0] : subcommands;
93389
- }
93390
- this.track({
93391
- key: "flag:future",
93392
- value: subcommand ? `${command}:${subcommand}` : command
93393
- });
93385
+ trackCliFlagFuture(command) {
93386
+ this.track({ key: "flag:future", value: command });
93394
93387
  }
93395
93388
  };
93396
93389
  TelemetryEventStore = class {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vercel",
3
- "version": "41.7.7",
3
+ "version": "41.7.8",
4
4
  "preferGlobal": true,
5
5
  "license": "Apache-2.0",
6
6
  "description": "The command-line interface for Vercel",
@@ -159,9 +159,9 @@
159
159
  "write-json-file": "2.2.0",
160
160
  "xdg-app-paths": "5.1.0",
161
161
  "yauzl-promise": "2.1.3",
162
- "@vercel-internals/constants": "1.0.4",
163
162
  "@vercel-internals/get-package-json": "1.0.0",
164
- "@vercel-internals/types": "3.0.6"
163
+ "@vercel-internals/types": "3.0.6",
164
+ "@vercel-internals/constants": "1.0.4"
165
165
  },
166
166
  "scripts": {
167
167
  "test": "jest --reporters=default --reporters=jest-junit --env node --verbose --bail",