pmcf 1.30.3 → 1.30.4

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/model.mjs +0 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.30.3",
3
+ "version": "1.30.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/model.mjs CHANGED
@@ -134,10 +134,6 @@ export class Host extends Base {
134
134
  }
135
135
 
136
136
  static async prepareData(root, data) {
137
- if (data.location) {
138
- data.location = await root.load(data.location, { type: Location });
139
- }
140
-
141
137
  if (data.extends) {
142
138
  data.extends = await Promise.all(
143
139
  asArray(data.extends).map(e => root.load(e, { type: Host }))
@@ -362,7 +358,6 @@ export class Host extends Base {
362
358
  "distribution",
363
359
  "deployment",
364
360
  "master",
365
- "location",
366
361
  "model",
367
362
  "replaces",
368
363
  "depends",