Comparing version 3.1.25 to 3.1.26
{ | ||
"name": "akkeris", | ||
"version": "3.1.25", | ||
"version": "3.1.26", | ||
"description": "Akkeris CLI", | ||
@@ -5,0 +5,0 @@ "main": "aka.js", |
@@ -81,5 +81,8 @@ const util = require('util'); | ||
let apps = args.to ? args.to : []; | ||
apps = apps.map((x) => x.split(',')); | ||
apps = [...apps].filter((x) => { if (x.trim() === '') return false; return true; }); | ||
apps = apps | ||
.map((x) => x.split(',')) | ||
.flat() | ||
.filter((x) => { if (x.trim() === '') return false; return true; }); | ||
const task = appkit.terminal.task(`Promoting app **⬢ ${args.app}**`); | ||
@@ -86,0 +89,0 @@ task.start(); |
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
300786
7993