Comparing version 3.1.12 to 3.1.13
{ | ||
"name": "akkeris", | ||
"version": "3.1.12", | ||
"version": "3.1.13", | ||
"description": "Akkeris CLI", | ||
@@ -5,0 +5,0 @@ "main": "aka.js", |
@@ -69,5 +69,5 @@ const assert = require('assert'); | ||
if (info.state === 'stopping' || info.state === 'stopped' || info.state === 'pending' || info.state === 'starting') { | ||
return ` ${dyno_name}:${spacing}~~${info.state}~~ ###${ps.updated_at}###`; | ||
return ` ${dyno_name}:${spacing}~~${info.state}~~ ###${ps.updated_at}### ${ps.restarts > 0 ? '- ' + ps.restarts.toLocaleString() + ' restart(s).' : ''}`; | ||
} | ||
return ` ${dyno_name}:${spacing}^^^${info.state}^^^ ###${ps.updated_at}###`; | ||
return ` ${dyno_name}:${spacing}^^^${info.state}^^^ ###${ps.updated_at}### ${ps.restarts > 0 ? '- ' + ps.restarts.toLocaleString() + ' restart(s).' : ''}`; | ||
} | ||
@@ -74,0 +74,0 @@ |
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
270788