npm-pkgbuild 18.2.29 → 18.2.30

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": "18.2.29",
3
+ "version": "18.2.30",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -55,7 +55,7 @@
55
55
  "@npmcli/arborist": "^9.1.4",
56
56
  "@vercel/nft": "^0.30.1",
57
57
  "aggregate-async-iterator": "^1.2.2",
58
- "commander": "^14.0.0",
58
+ "commander": "^14.0.1",
59
59
  "compare-versions": "^6.1.1",
60
60
  "content-entry": "^14.2.4",
61
61
  "content-entry-filesystem": "^9.0.10",
@@ -67,18 +67,18 @@
67
67
  "key-value-transformer": "^3.3.0",
68
68
  "npm-package-walker": "^8.0.9",
69
69
  "npm-packlist": "^10.0.1",
70
- "pacc": "^4.12.2",
70
+ "pacc": "^4.15.1",
71
71
  "package-directory": "^8.1.0",
72
72
  "pacote": "^21.0.1",
73
73
  "tar-stream": "^3.1.7",
74
74
  "uti": "^8.9.1"
75
75
  },
76
76
  "devDependencies": {
77
- "@types/node": "^24.3.1",
77
+ "@types/node": "^24.3.2",
78
78
  "ava": "^6.4.1",
79
79
  "c8": "^10.1.3",
80
80
  "documentation": "^14.0.3",
81
- "semantic-release": "^24.2.7",
81
+ "semantic-release": "^24.2.8",
82
82
  "stream-buffers": "^3.0.3",
83
83
  "typescript": "^5.9.2"
84
84
  },
@@ -132,6 +132,10 @@ export function shrinkNPM(
132
132
  return Object.keys(pkg).length === 0 ? undefined : pkg;
133
133
  }
134
134
 
135
+ /**
136
+ * @param {object} object
137
+ * @param {string} key
138
+ */
135
139
  function deleteKey(object, key) {
136
140
  if (object) {
137
141
  delete object[key];