@sapphirecode/dcm
Advanced tools
Comparing version 1.2.3 to 1.2.4
@@ -127,4 +127,6 @@ "use strict"; | ||
service = services[index]; | ||
if (service.passive && !include_passive) | ||
if (service.passive && !include_passive) { | ||
services.splice(index, 1); | ||
continue; | ||
} | ||
waiting_for = service.depends_on.filter(function (dep) { | ||
@@ -131,0 +133,0 @@ var active = queue.filter(function (s) { return s.name === dep; }).length; |
@@ -49,6 +49,7 @@ import path from 'path'; | ||
const service = services[index]; | ||
if (service.passive && !include_passive) | ||
if (service.passive && !include_passive) { | ||
services.splice (index, 1); | ||
continue; | ||
} | ||
const waiting_for = service.depends_on.filter ((dep) => { | ||
@@ -55,0 +56,0 @@ const active = queue.filter ((s) => s.name === dep).length; |
{ | ||
"name": "@sapphirecode/dcm", | ||
"version": "1.2.3", | ||
"version": "1.2.4", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "description": "Managing docker compose configurations, volumes and networks", |
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
89300
1967