diff --git a/lib/events.ts b/lib/events.ts index 04d528da..d8f38a2f 100644 --- a/lib/events.ts +++ b/lib/events.ts @@ -30,16 +30,19 @@ export function trackCommand(capitanoCli: Capitano.Cli) { username, }, }); - + // `command.signature.toString()` results in a string like, for example: + // "push " + // That's literally so: "applicationOrDevice" is NOT replaced with + // the actual application ID or device ID. The purpose is find out the + // most / least used command verbs, so we can focus our development + // effort where it is most beneficial to end users. return mixpanel.track(`[CLI] ${command.signature.toString()}`, { distinct_id: username, - argv: process.argv.join(' '), version: packageJSON.version, node: process.version, arch: process.arch, resinUrl, platform: process.platform, - command: capitanoCli, }); }); })