pmcf 6.3.5 → 6.3.7

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/bin/pmcf-package CHANGED
@@ -41,11 +41,14 @@ const publishingDetails = createPublishingDetails(
41
41
  env
42
42
  );
43
43
 
44
+ let suffixId = 1;
45
+
44
46
  for (const object of root.find(args)) {
45
47
  if (object.isTemplate) {
46
48
  continue;
47
49
  }
48
- const stagingDir = join(options.output, object.fullName);
50
+
51
+ const stagingDir = join(options.output, String(suffixId++).padStart(5,'0'));
49
52
 
50
53
  for await (let { sources, outputs, properties } of object.preparePackages(
51
54
  stagingDir
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.3.5",
3
+ "version": "6.3.7",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -53,7 +53,7 @@
53
53
  "aggregated-map": "^1.0.7",
54
54
  "content-entry-transform": "^1.6.9",
55
55
  "ip-utilties": "^3.4.0",
56
- "npm-pkgbuild": "^20.8.0",
56
+ "npm-pkgbuild": "^20.8.1",
57
57
  "pacc": "^10.4.1",
58
58
  "package-directory": "^8.2.0"
59
59
  },
@@ -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