pmcf 6.17.4 → 6.18.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 +4 -4
  2. package/src/base.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "6.17.4",
3
+ "version": "6.18.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -52,9 +52,9 @@
52
52
  "dependencies": {
53
53
  "aggregated-map": "^1.0.8",
54
54
  "content-entry-transform": "^1.7.0",
55
- "ip-utilties": "^3.9.0",
56
- "npm-pkgbuild": "^20.8.7",
57
- "pacc": "^11.0.0",
55
+ "ip-utilties": "^3.10.0",
56
+ "npm-pkgbuild": "^20.8.8",
57
+ "pacc": "^11.0.1",
58
58
  "package-directory": "^8.2.0",
59
59
  "yaml": "^2.9.0"
60
60
  },
package/src/base.mjs CHANGED
@@ -318,7 +318,7 @@ export class Base {
318
318
  }
319
319
 
320
320
  value(name) {
321
- return this.attribute(name) ?? this.property(name);
321
+ return this.attribute(name) ?? this.property(name) ?? this.named(name);
322
322
  }
323
323
 
324
324
  /**