pmcf 6.3.5 → 6.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.3.5",
3
+ "version": "6.3.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -529,9 +529,9 @@ export class bind extends ExtraSourceService {
529
529
 
530
530
  let hasContent = false;
531
531
 
532
- console.log("PACKAGE", Object.keys(this.groups));
532
+ console.log("BIND GROUPS", [...this.groups.keys()]);
533
533
 
534
- for (const group of Object.values(this.groups)) {
534
+ for (const group of this.groups.values()) {
535
535
  hasContent ||= await group.packageContent(outputControl);
536
536
  }
537
537