pmcf 4.29.6 → 4.30.0

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/owner.mjs +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "4.29.6",
3
+ "version": "4.30.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/owner.mjs CHANGED
@@ -156,6 +156,10 @@ export class Owner extends Base {
156
156
  return hosts;
157
157
  }
158
158
 
159
+ set hosts(value) {
160
+ this.typeNamed("host").set(value.name, value);
161
+ }
162
+
159
163
  get hosts() {
160
164
  let hosts = this.directHosts();
161
165