pmcf 6.1.7 → 6.1.8
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 +1 -1
- package/src/core-service.mjs +2 -2
package/package.json
CHANGED
package/src/core-service.mjs
CHANGED
|
@@ -257,8 +257,8 @@ export class CoreService extends Base {
|
|
|
257
257
|
|
|
258
258
|
get packageData() {
|
|
259
259
|
const packageData = super.packageData;
|
|
260
|
-
const name = `${this.owner.name}-${this.
|
|
261
|
-
packageData.properties.name = `${this.
|
|
260
|
+
const name = `${this.owner.owner.name}-${this.owner.name}`;
|
|
261
|
+
packageData.properties.name = `${this.name}-${name}`;
|
|
262
262
|
packageData.properties.description = `${this.type} service definitions for ${this.fullName}`;
|
|
263
263
|
packageData.properties.groups.push("service-config", name);
|
|
264
264
|
return packageData;
|