pmcf 6.8.1 → 6.8.3

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.8.1",
3
+ "version": "6.8.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -61,15 +61,10 @@
61
61
  "devDependencies": {
62
62
  "@types/node": "^26.1.1",
63
63
  "ava": "^8.0.1",
64
- "c8": "^11.0.0",
64
+ "c8": "^12.0.0",
65
65
  "documentation": "^14.0.3",
66
66
  "semantic-release": "^25.0.7"
67
67
  },
68
- "overrides": {
69
- "c8": {
70
- "yargs": "^18.0.0"
71
- }
72
- },
73
68
  "engines": {
74
69
  "node": ">=26.4.0"
75
70
  },
@@ -40,7 +40,7 @@ export class chrony extends ExtraSourceService {
40
40
  const packageData = this.packageData;
41
41
  packageData.sources.push(new FileContentProvider(dir + "/"));
42
42
 
43
- const subnets = [...new Set([...this.subnets.values()])]; // TODO should be normal
43
+ const subnets = [...new Map(this.subnets).values()]; // TODO should be normal
44
44
  const host = this.host;
45
45
 
46
46
  const lines = [
@@ -147,13 +147,13 @@ export class kea extends CoreService {
147
147
  const source = host.owner;
148
148
  const name = host.name;
149
149
 
150
- const subnets = [
151
- ...new Set(
152
- [...this.subnets.values()].filter(
153
- s => s !== SUBNET_LOCALHOST_IPV4 && s !== SUBNET_LOCALHOST_IPV6
154
- )
155
- )
156
- ]; // TODO should be normal
150
+ const subnets = [...new Map(this.subnets).values()].filter(
151
+ s => s !== SUBNET_LOCALHOST_IPV4 && s !== SUBNET_LOCALHOST_IPV6
152
+ ); // TODO should be normal
153
+ /*console.log(
154
+ "SUBNETS",
155
+ subnets.map(s => s.fullName)
156
+ );*/
157
157
 
158
158
  //console.log(source.fullName, [...source.hosts.keys()]);
159
159
 
@@ -45,6 +45,7 @@ export class mosquitto extends CoreService {
45
45
  }
46
46
 
47
47
  async *preparePackages(dir) {
48
+ /*
48
49
  const pm = this.root.named("/services/primary-SW/mosquitto");
49
50
  const wd = [...this.walkDirections(["this", "extends"])];
50
51
 
@@ -55,7 +56,7 @@ export class mosquitto extends CoreService {
55
56
  pm.fullName,
56
57
  [...pm.extends].map(n => n.fullName),
57
58
  wd.map(n => [n.fullName, n.directory])
58
- );
59
+ );*/
59
60
 
60
61
  const permissions = this.packageContentPermissions;
61
62
  const packageData = this.packageData;