pmcf 6.13.1 → 6.14.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.13.1",
3
+ "version": "6.14.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -50,10 +50,10 @@
50
50
  "lint:docs": "documentation lint ./src**/*.mjs"
51
51
  },
52
52
  "dependencies": {
53
- "aggregated-map": "^1.0.7",
53
+ "aggregated-map": "^1.0.8",
54
54
  "content-entry-transform": "^1.6.9",
55
- "ip-utilties": "^3.8.0",
56
- "npm-pkgbuild": "^20.8.4",
55
+ "ip-utilties": "^3.8.1",
56
+ "npm-pkgbuild": "^20.8.6",
57
57
  "pacc": "^10.4.1",
58
58
  "package-directory": "^8.2.0",
59
59
  "yaml": "^2.9.0"
@@ -135,6 +135,10 @@ class bind_group extends Base {
135
135
  return "unknown";
136
136
  }
137
137
 
138
+ get order() {
139
+ return this.sharedWith ? this.sharedWith.order + 1 : 0;
140
+ }
141
+
138
142
  get service() {
139
143
  return this.owner;
140
144
  }