cli-engine-command
Advanced tools
Comparing version 8.0.11 to 8.0.12
@@ -35,4 +35,6 @@ 'use strict'; | ||
static get id() { | ||
let cmd = this.command ? `${this.topic}:${this.command}` : this.topic; | ||
return cmd; | ||
let cmd = []; | ||
if (this.topic) cmd.push(this.topic); | ||
if (this.command) cmd.push(this.command); | ||
return cmd.join(':'); | ||
} | ||
@@ -39,0 +41,0 @@ |
{ | ||
"name": "cli-engine-command", | ||
"description": "base CLI command for cli-engine", | ||
"version": "8.0.11", | ||
"version": "8.0.12", | ||
"author": "Jeff Dickey @dickeyxxx", | ||
@@ -6,0 +6,0 @@ "bugs": "https://github.com/heroku/cli-engine-command/issues", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
87339
1258