npm-pkgbuild 15.3.27 → 15.3.29

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": "npm-pkgbuild",
3
- "version": "15.3.27",
3
+ "version": "15.3.29",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -65,7 +65,7 @@
65
65
  "ini": "^4.1.3",
66
66
  "iterable-string-interceptor": "^3.0.0",
67
67
  "key-value-transformer": "^3.2.3",
68
- "npm-package-walker": "^7.0.2",
68
+ "npm-package-walker": "^7.0.4",
69
69
  "npm-packlist": "^8.0.2",
70
70
  "pacote": "^18.0.6",
71
71
  "pkg-dir": "^8.0.0",
@@ -73,7 +73,7 @@
73
73
  "uti": "^8.6.1"
74
74
  },
75
75
  "devDependencies": {
76
- "@types/node": "^22.0.0",
76
+ "@types/node": "^22.1.0",
77
77
  "ava": "^6.1.3",
78
78
  "c8": "^10.1.2",
79
79
  "documentation": "^14.0.3",
@@ -157,7 +157,7 @@ export async function* extractFromPackage(options = {}, env = {}) {
157
157
 
158
158
  if (requires.properties) {
159
159
  for (const [k, v] of Object.entries(requires.properties)) {
160
- if (root.properties[k] !== v && options[k] !== v) {
160
+ if (root?.properties[k] !== v && options[k] !== v) {
161
161
  fullfilled = false;
162
162
  break;
163
163
  }