pmcf 1.94.4 → 1.94.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/host.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.94.4",
3
+ "version": "1.94.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -263,7 +263,7 @@ export class Host extends Base {
263
263
  }
264
264
 
265
265
  get distribution() {
266
- return this.#distribution || this.extends.find(e => e.distribution);
266
+ return this.#distribution || this.extends.find(e => e.distribution)?.distribution;
267
267
  }
268
268
 
269
269
  get modelName() {