pmcf 5.0.2 → 5.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/host.mjs +1 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "5.0.2",
3
+ "version": "5.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -416,10 +416,7 @@ export class Host extends ServiceOwner {
416
416
 
417
417
  Object.assign(packageData.properties, {
418
418
  description: `${this.typeName} definitions for ${this.fullName}`,
419
- dependencies: [
420
- `${this.owner.typeName}-${this.owner.name}`,
421
- ...this.depends
422
- ],
419
+ dependencies: [...this.depends],
423
420
  provides: [...this.provides],
424
421
  replaces: [...this.replaces],
425
422
  depends: [...this.depends],