pmcf 6.7.1 → 6.7.2

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.7.1",
3
+ "version": "6.7.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -52,7 +52,7 @@
52
52
  "dependencies": {
53
53
  "aggregated-map": "^1.0.7",
54
54
  "content-entry-transform": "^1.6.9",
55
- "ip-utilties": "^3.5.3",
55
+ "ip-utilties": "^3.6.0",
56
56
  "npm-pkgbuild": "^20.8.1",
57
57
  "pacc": "^10.4.1",
58
58
  "package-directory": "^8.2.0",
package/src/base.mjs CHANGED
@@ -516,6 +516,7 @@ export class Base {
516
516
 
517
517
  try {
518
518
  if ((await stat(dir)).isDirectory) {
519
+ console.log("TD", dir);
519
520
  yield transform(
520
521
  new FileContentProvider(
521
522
  { dir, pattern: "**/*" },
@@ -46,13 +46,15 @@ export class mosquitto extends CoreService {
46
46
 
47
47
  async *preparePackages(dir) {
48
48
  const pm = this.root.named("/services/primary-SW/mosquitto");
49
+ const wd = [...this.walkDirections(["this", "extends"])];
49
50
 
50
51
  console.log(
51
52
  "MOSQUITTO",
52
- pm.fullName,
53
53
  this.fullName,
54
54
  [...this.extends].map(n => n.fullName),
55
- [...this.walkDirections(["this", "extends"])].map(n => this.fullName)
55
+ pm.fullName,
56
+ [...pm.extends].map(n => n.fullName),
57
+ wd.map(n => [n.fullName, n.directory])
56
58
  );
57
59
 
58
60
  const permissions = this.packageContentPermissions;