pmcf 4.14.7 → 4.14.9

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": "4.14.7",
3
+ "version": "4.14.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -56,7 +56,7 @@
56
56
  "content-entry-transform": "^1.6.1",
57
57
  "ip-utilties": "^2.0.3",
58
58
  "npm-pkgbuild": "^20.2.3",
59
- "pacc": "^8.1.8",
59
+ "pacc": "^8.2.0",
60
60
  "package-directory": "^8.1.0"
61
61
  },
62
62
  "devDependencies": {
@@ -174,9 +174,7 @@ export class KeaService extends Service {
174
174
  (
175
175
  await Array.fromAsync(
176
176
  network.findServices(
177
- `type="kea" && priority>=${
178
- this.priority < 100 ? this.priority : 100
179
- }`
177
+ `type="kea" && priority>=${Math.min(this.priority, 100)}`
180
178
  )
181
179
  )
182
180
  )
@@ -281,8 +279,7 @@ export class KeaService extends Service {
281
279
  for (const [key] of Object.entries(
282
280
  KeaServiceTypeDefinition.attributes
283
281
  ).filter(
284
- ([key, attribute]) =>
285
- attribute.configurable && this[key] !== undefined
282
+ ([key, attribute]) => attribute.configurable && this[key] !== undefined
286
283
  )) {
287
284
  cfg[key] = this[key];
288
285
  }