pmcf 6.20.0 → 6.20.1
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 +4 -4
- package/src/services/bind.mjs +5 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "6.20.
|
|
3
|
+
"version": "6.20.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"lint:docs": "documentation lint ./src**/*.mjs"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"aggregated-map": "^1.0.
|
|
53
|
+
"aggregated-map": "^1.0.9",
|
|
54
54
|
"content-entry-transform": "^1.7.0",
|
|
55
55
|
"ip-utilties": "^3.10.0",
|
|
56
|
-
"npm-pkgbuild": "^20.8.
|
|
56
|
+
"npm-pkgbuild": "^20.8.11",
|
|
57
57
|
"pacc": "^11.0.2",
|
|
58
58
|
"package-directory": "^8.2.0",
|
|
59
59
|
"yaml": "^2.9.0"
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"ava": "^8.0.1",
|
|
64
64
|
"c8": "^12.0.0",
|
|
65
65
|
"documentation": "^14.0.3",
|
|
66
|
-
"semantic-release": "^25.0.
|
|
66
|
+
"semantic-release": "^25.0.9"
|
|
67
67
|
},
|
|
68
68
|
"engines": {
|
|
69
69
|
"node": ">=26.5.1"
|
package/src/services/bind.mjs
CHANGED
|
@@ -335,13 +335,13 @@ class bind_group extends Base {
|
|
|
335
335
|
intoCatalog(zone, locationName) {
|
|
336
336
|
if (this.hasCatalog) {
|
|
337
337
|
const catalogConfig = this.zoneConfigs.getOrInsertComputed(
|
|
338
|
-
`catalog.${
|
|
339
|
-
|
|
338
|
+
`catalog.${locationName}`,
|
|
339
|
+
id => new bind_zone_config(this, `${id}.zone.conf`)
|
|
340
340
|
);
|
|
341
341
|
|
|
342
342
|
const catalogZone = this._zones.getOrInsertComputed(
|
|
343
|
-
`catalog.${
|
|
344
|
-
|
|
343
|
+
`catalog.${locationName}`,
|
|
344
|
+
id => new catalog_zone(this, id, catalogConfig, locationName)
|
|
345
345
|
);
|
|
346
346
|
|
|
347
347
|
const hash = createHmac("sha1", zone.id).digest("hex");
|
|
@@ -616,7 +616,6 @@ export class bind extends ExtraSourceService {
|
|
|
616
616
|
const present = await this.writeForwarders(outputControl);
|
|
617
617
|
|
|
618
618
|
if (hasContent || present) {
|
|
619
|
-
//console.log(packageData);
|
|
620
619
|
yield packageData;
|
|
621
620
|
}
|
|
622
621
|
}
|
|
@@ -686,12 +685,10 @@ export class bind extends ExtraSourceService {
|
|
|
686
685
|
);
|
|
687
686
|
}
|
|
688
687
|
}
|
|
689
|
-
|
|
690
|
-
//this.assignCatalog(outputControl, zone, `outfacting.${host.owner.name}`);
|
|
691
688
|
});
|
|
692
689
|
}
|
|
693
690
|
}
|
|
694
691
|
|
|
695
692
|
function newOutputControl(packageData, dir, permissions) {
|
|
696
|
-
return { configs: [],
|
|
693
|
+
return { configs: [], packageData, dir, permissions };
|
|
697
694
|
}
|